/[classpath]/classpath/javax/swing/plaf/DimensionUIResource.java
ViewVC logotype

Diff of /classpath/javax/swing/plaf/DimensionUIResource.java

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

revision 1.2 by egagnon, Sun Aug 11 20:08:43 2002 UTC revision 1.3 by brawer, Tue Jun 24 14:08:45 2003 UTC
# Line 1  Line 1 
1  /* DimensionUIResource.java  /* DimensionUIResource.java
2     Copyright (C) 2002 Free Software Foundation, Inc.     Copyright (C) 2003 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 37  exception statement from your version. * Line 37  exception statement from your version. *
37    
38    
39  package javax.swing.plaf;  package javax.swing.plaf;
40    
41  import java.awt.Dimension;  import java.awt.Dimension;
42    
43  /**  /**
44   * STUBBED   * A Dimension that is marked as <code>UIResource</code>, which
45     * indicates that it has been installed by a pluggable
46     * LookAndFeel. Such dimensions are replaced when the LookAndFeel
47     * changes.
48     *
49     * @see java.awt.Dimension
50     *
51     * @author Andrew Selkirk (aselkirk@sympatico.ca)
52     * @author Sascha Brawer (brawer@dandelis.ch)
53   */   */
54  public class DimensionUIResource extends Dimension implements UIResource  public class DimensionUIResource
55      extends Dimension
56      implements UIResource
57  {  {
58    public DimensionUIResource(int w, int h)    /**
59       * Constructs a new DimensionUIResource, given its width and height.
60       *
61       * @param width the width in pixels.
62       * @param height the height in pixels.
63       */
64      public DimensionUIResource(int width, int height)
65    {    {
66      super(w, h);      super(width, height);
67    }    }
68  } // class DimensionUIResource  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

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