/[classpath]/classpath/java/awt/ScrollPaneAdjustable.java
ViewVC logotype

Diff of /classpath/java/awt/ScrollPaneAdjustable.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by mkoch, Mon Mar 17 16:28:49 2003 UTC revision 1.7 by mkoch, Tue Mar 18 13:30:21 2003 UTC
# Line 49  import java.io.Serializable; Line 49  import java.io.Serializable;
49   * @since 1.4   * @since 1.4
50   */   */
51  public class ScrollPaneAdjustable  public class ScrollPaneAdjustable
   extends Scrollbar  
52    implements Adjustable, Serializable    implements Adjustable, Serializable
53  {  {
54    private static final long serialVersionUID = -3359745691033257079L;    private static final long serialVersionUID = -3359745691033257079L;
# Line 60  public class ScrollPaneAdjustable Line 59  public class ScrollPaneAdjustable
59    int minimum;    int minimum;
60    int maximum;    int maximum;
61    int visibleAmount;    int visibleAmount;
62    int unitIncrement;    int unitIncrement = 1;
63    int blockIncrement;    int blockIncrement = 1;
64    AdjustmentListener adjustmentListener;    AdjustmentListener adjustmentListener;
65    
66    ScrollPaneAdjustable (int orientation)    ScrollPaneAdjustable (ScrollPane sp, int orientation)
67    {    {
68      throw new Error ("not implemented");      this.sp = sp;
69        this.orientation = orientation;
70    }    }
71        
72    ScrollPaneAdjustable (ScrollPane sp, int orientation, int value, int minimum,    ScrollPaneAdjustable (ScrollPane sp, int orientation, int value, int minimum,

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26