moved back to narya/media

git-svn-id: https://samskivert.googlecode.com/svn/trunk@792 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
ray
2002-07-09 21:10:28 +00:00
parent f263dd53d3
commit f605a2dc2f
@@ -1,27 +0,0 @@
//
// $Id: SafeScrollPane.java,v 1.1 2002/07/09 17:48:23 ray Exp $
package com.samskivert.swing;
import java.awt.Component;
import javax.swing.JScrollPane;
import javax.swing.JViewport;
/**
* A scroll pane that is safe to use in frame managed views.
*/
public class SafeScrollPane extends JScrollPane
{
public SafeScrollPane (Component view)
{
super(view);
}
protected JViewport createViewport ()
{
JViewport vp = new JViewport();
vp.setScrollMode(JViewport.SIMPLE_SCROLL_MODE);
return vp;
}
}