Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/awt/Scrollbar.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    11/* 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.
    33
    44This file is part of GNU Classpath.
     
    4141import java.awt.peer.ScrollbarPeer;
    4242import java.awt.peer.ComponentPeer;
    43 
    4443import java.awt.event.AdjustmentListener;
    4544import java.awt.event.AdjustmentEvent;
     45
     46
    4647
    4748/**
     
    5152  * @author Tom Tromey <[email protected]>
    5253  */
    53 public class Scrollbar extends Component implements Adjustable,
    54                                                     java.io.Serializable
     54public class Scrollbar extends Component implements Accessible,
     55                                                    Adjustable,
     56                                                    Serializable
    5557{
    5658
     
    127129/**
    128130  * 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,
    130134  */
    131135public
     
    146150  * @param orientation The orientation of this scrollbar.
    147151  *
     152
    148153  * @exception IllegalArgumentException If the orientation value is not valid.
    149154  */
     
    169174  * @param maximum The maximum value of the scrollbar.
    170175  *
     176
    171177  * @exception IllegalArgumentException If the orientation value is not valid.
    172178  */
     
    175181          int maximum) throws IllegalArgumentException
    176182{
     183
     184
     185
    177186  if ((orientation != HORIZONTAL) && (orientation != VERTICAL))
    178187    throw new IllegalArgumentException("Bad orientation value: "
     
    661670}
    662671
     672
     673
     674
     675
     676
     677
     678
     679
     680
     681
     682
     683
    663684/*************************************************************************/
    664685
Note: See TracChangeset for help on using the changeset viewer.