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

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

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

revision 1.14 by mark, Thu Nov 11 17:22:52 2004 UTC revision 1.15 by mkoch, Thu Dec 16 16:09:28 2004 UTC
# Line 1003  public class JTable extends JComponent Line 1003  public class JTable extends JComponent
1003    }    }
1004    
1005    /**    /**
1006     * Get the value of the {@link #interCellSpacing} property.     * Get the value of the {@link #intercellSpacing} property.
1007     *     *
1008     * @return The current value of the property     * @return The current value of the property
1009     */     */
1010    public Dimension getInterCellSpacing()    public Dimension getIntercellSpacing()
1011    {    {
1012      return new Dimension(columnModel.getColumnMargin(), rowMargin);      return new Dimension(columnModel.getColumnMargin(), rowMargin);
1013    }    }
# Line 1297  public class JTable extends JComponent Line 1297  public class JTable extends JComponent
1297    }    }
1298    
1299    /**    /**
1300     * Set the value of the {@link #interCellSpacing} property.     * Set the value of the {@link #intercellSpacing} property.
1301     *     *
1302     * @param i The new value of the interCellSpacing property     * @param i The new value of the intercellSpacing property
1303     */     */
1304    public void setInterCellSpacing(Dimension i)    public void setIntercellSpacing(Dimension i)
1305    {    {
1306      rowMargin = i.height;      rowMargin = i.height;
1307      columnModel.setColumnMargin(i.width);      columnModel.setColumnMargin(i.width);

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

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