Changeset 1391 for branches/GNU/src/gcc/libjava/java/awt/Scrollbar.java
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/awt/Scrollbar.java (modified) (8 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/awt/Scrollbar.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 1 /* Scrollbar.java -- AWT Scrollbar widget 2 Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.2 Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc. 3 3 4 4 This file is part of GNU Classpath. … … 41 41 import java.awt.peer.ScrollbarPeer; 42 42 import java.awt.peer.ComponentPeer; 43 44 43 import java.awt.event.AdjustmentListener; 45 44 import java.awt.event.AdjustmentEvent; 45 46 46 47 47 48 /** … … 51 52 * @author Tom Tromey <[email protected]> 52 53 */ 53 public class Scrollbar extends Component implements Adjustable, 54 java.io.Serializable 54 public class Scrollbar extends Component implements Accessible, 55 Adjustable, 56 Serializable 55 57 { 56 58 … … 127 129 /** 128 130 * Initializes a new instance of <code>Scrollbar</code> with a 129 * veritical orientation and default values for all other parameters. 131 * vertical orientation and default values for all other parameters. 132 * 133 * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true, 130 134 */ 131 135 public … … 146 150 * @param orientation The orientation of this scrollbar. 147 151 * 152 148 153 * @exception IllegalArgumentException If the orientation value is not valid. 149 154 */ … … 169 174 * @param maximum The maximum value of the scrollbar. 170 175 * 176 171 177 * @exception IllegalArgumentException If the orientation value is not valid. 172 178 */ … … 175 181 int maximum) throws IllegalArgumentException 176 182 { 183 184 185 177 186 if ((orientation != HORIZONTAL) && (orientation != VERTICAL)) 178 187 throw new IllegalArgumentException("Bad orientation value: " … … 661 670 } 662 671 672 673 674 675 676 677 678 679 680 681 682 683 663 684 /*************************************************************************/ 664 685 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
