/[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.13 by mkoch, Fri Oct 22 12:43:59 2004 UTC revision 1.14 by rabbit78, Mon Jun 27 14:55:14 2005 UTC
# Line 192  public class Box extends JComponent impl Line 192  public class Box extends JComponent impl
192    public static Component createGlue()    public static Component createGlue()
193    {    {
194      Filler glue = new Filler(new Dimension(0,0), new Dimension(0,0),      Filler glue = new Filler(new Dimension(0,0), new Dimension(0,0),
195                               new Dimension(Integer.MAX_VALUE,Integer.MAX_VALUE)                               new Dimension(Short.MAX_VALUE,Short.MAX_VALUE)
196                               );                               );
197      return glue;      return glue;
198    }    }
# Line 211  public class Box extends JComponent impl Line 211  public class Box extends JComponent impl
211     */     */
212    public static Component createHorizontalGlue()    public static Component createHorizontalGlue()
213    {    {
214      return createGlue();      Filler glue = new Filler(new Dimension(0,0), new Dimension(0,0),
215                                 new Dimension(Short.MAX_VALUE, 0)
216                                 );
217        return glue;
218    }    }
219        
220    /**    /**

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

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