/[classpath]/classpath/java/awt/GridBagLayoutInfo.java
ViewVC logotype

Diff of /classpath/java/awt/GridBagLayoutInfo.java

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

revision 1.1 by mkoch, Sat Jun 28 15:35:36 2003 UTC revision 1.2 by mkoch, Sat Jun 28 21:02:29 2003 UTC
# Line 47  class GridBagLayoutInfo implements Seria Line 47  class GridBagLayoutInfo implements Seria
47  {  {
48    private static final long serialVersionUID = -4899416460737170217L;    private static final long serialVersionUID = -4899416460737170217L;
49    
50      int x = 0;
51      int y = 0;
52    int cols;    int cols;
53    int rows;    int rows;
54    int colWidths[];    int colWidths[];
55    int rowWidths[];    int rowHeights[];
56    double colWeigths[];    double colWeights[];
57    double rowWeigths[];    double rowWeights[];
58    
59    GridBagLayoutInfo (int cols, int rows)    GridBagLayoutInfo (int cols, int rows)
60    {    {
61      this.cols = cols;      this.cols = cols;
62      this.rows = rows;      this.rows = rows;
63      this.colWidths = new int [cols];      this.colWidths = new int [cols];
64      this.rowWidths = new int [rows];      this.rowHeights = new int [rows];
65      this.colWeigths = new double [cols];      this.colWeights = new double [cols];
66      this.rowWeigths = new double [rows];      this.rowWeights = new double [rows];
67    }    }
68  }  }

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

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