src/share/classes/java/awt/GridBagLayout.java

Print this page
rev 10048 : 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
Reviewed-by:

*** 357,367 **** * @author Doug Stein * @author Bill Spitzak (orignial NeWS & OLIT implementation) * @see java.awt.GridBagConstraints * @see java.awt.GridBagLayoutInfo * @see java.awt.ComponentOrientation ! * @since JDK1.0 */ public class GridBagLayout implements LayoutManager2, java.io.Serializable { static final int EMPIRICMULTIPLIER = 2; --- 357,367 ---- * @author Doug Stein * @author Bill Spitzak (orignial NeWS & OLIT implementation) * @see java.awt.GridBagConstraints * @see java.awt.GridBagLayoutInfo * @see java.awt.ComponentOrientation ! * @since 1.0 */ public class GridBagLayout implements LayoutManager2, java.io.Serializable { static final int EMPIRICMULTIPLIER = 2;
*** 560,570 **** * is distinct from the grid origin given by the cell coordinates (0,0). * Most applications do not call this method directly. * @return the graphics origin of the cell in the top-left * corner of the layout grid * @see java.awt.ComponentOrientation ! * @since JDK1.1 */ public Point getLayoutOrigin () { Point origin = new Point(0,0); if (layoutInfo != null) { origin.x = layoutInfo.startx; --- 560,570 ---- * is distinct from the grid origin given by the cell coordinates (0,0). * Most applications do not call this method directly. * @return the graphics origin of the cell in the top-left * corner of the layout grid * @see java.awt.ComponentOrientation ! * @since 1.1 */ public Point getLayoutOrigin () { Point origin = new Point(0,0); if (layoutInfo != null) { origin.x = layoutInfo.startx;
*** 578,588 **** * <p> * Most applications do not call this method directly. * @return an array of two arrays, containing the widths * of the layout columns and * the heights of the layout rows ! * @since JDK1.1 */ public int [][] getLayoutDimensions () { if (layoutInfo == null) return new int[2][0]; --- 578,588 ---- * <p> * Most applications do not call this method directly. * @return an array of two arrays, containing the widths * of the layout columns and * the heights of the layout rows ! * @since 1.1 */ public int [][] getLayoutDimensions () { if (layoutInfo == null) return new int[2][0];
*** 604,614 **** * <p> * Most applications do not call this method directly. * @return an array of two arrays, representing the * horizontal weights of the layout columns * and the vertical weights of the layout rows ! * @since JDK1.1 */ public double [][] getLayoutWeights () { if (layoutInfo == null) return new double[2][0]; --- 604,614 ---- * <p> * Most applications do not call this method directly. * @return an array of two arrays, representing the * horizontal weights of the layout columns * and the vertical weights of the layout rows ! * @since 1.1 */ public double [][] getLayoutWeights () { if (layoutInfo == null) return new double[2][0];
*** 645,655 **** * @param y the <i>y</i> coordinate of a point * @return an ordered pair of indexes that indicate which cell * in the layout grid contains the point * (<i>x</i>,&nbsp;<i>y</i>). * @see java.awt.ComponentOrientation ! * @since JDK1.1 */ public Point location(int x, int y) { Point loc = new Point(0,0); int i, d; --- 645,655 ---- * @param y the <i>y</i> coordinate of a point * @return an ordered pair of indexes that indicate which cell * in the layout grid contains the point * (<i>x</i>,&nbsp;<i>y</i>). * @see java.awt.ComponentOrientation ! * @since 1.1 */ public Point location(int x, int y) { Point loc = new Point(0,0); int i, d;