/[classpath]/classpath/javax/swing/Box.java
ViewVC logotype

Diff of /classpath/javax/swing/Box.java

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

revision 1.10 by mark, Sat Jul 31 22:25:17 2004 UTC revision 1.11 by mark, Sun Aug 8 12:51:41 2004 UTC
# Line 198  public class Box extends JComponent impl Line 198  public class Box extends JComponent impl
198        
199    public static Box createHorizontalBox()    public static Box createHorizontalBox()
200    {    {
201      return null;      return new Box(BoxLayout.X_AXIS);
202    }    }
203        
204    /**    /**
# Line 231  public class Box extends JComponent impl Line 231  public class Box extends JComponent impl
231        
232    public static Component createRigidArea(Dimension d)    public static Component createRigidArea(Dimension d)
233    {    {
234      return null;      return new Filler(d, d, d);
235    }    }
236        
237    public static Box createVerticalBox()    public static Box createVerticalBox()
238    {    {
239      return null;      return new Box(BoxLayout.Y_AXIS);
240    }    }
241        
242    /**    /**

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

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