src/share/classes/java/awt/CardLayout.java

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

*** 51,61 **** * method can be used to associate a string identifier with a given card * for fast random access. * * @author Arthur van Hoff * @see java.awt.Container ! * @since JDK1.0 */ public class CardLayout implements LayoutManager2, Serializable { --- 51,61 ---- * method can be used to associate a string identifier with a given card * for fast random access. * * @author Arthur van Hoff * @see java.awt.Container ! * @since 1.0 */ public class CardLayout implements LayoutManager2, Serializable {
*** 146,167 **** /** * Gets the horizontal gap between components. * @return the horizontal gap between components. * @see java.awt.CardLayout#setHgap(int) * @see java.awt.CardLayout#getVgap() ! * @since JDK1.1 */ public int getHgap() { return hgap; } /** * Sets the horizontal gap between components. * @param hgap the horizontal gap between components. * @see java.awt.CardLayout#getHgap() * @see java.awt.CardLayout#setVgap(int) ! * @since JDK1.1 */ public void setHgap(int hgap) { this.hgap = hgap; } --- 146,167 ---- /** * Gets the horizontal gap between components. * @return the horizontal gap between components. * @see java.awt.CardLayout#setHgap(int) * @see java.awt.CardLayout#getVgap() ! * @since 1.1 */ public int getHgap() { return hgap; } /** * Sets the horizontal gap between components. * @param hgap the horizontal gap between components. * @see java.awt.CardLayout#getHgap() * @see java.awt.CardLayout#setVgap(int) ! * @since 1.1 */ public void setHgap(int hgap) { this.hgap = hgap; }
*** 178,188 **** /** * Sets the vertical gap between components. * @param vgap the vertical gap between components. * @see java.awt.CardLayout#getVgap() * @see java.awt.CardLayout#setHgap(int) ! * @since JDK1.1 */ public void setVgap(int vgap) { this.vgap = vgap; } --- 178,188 ---- /** * Sets the vertical gap between components. * @param vgap the vertical gap between components. * @see java.awt.CardLayout#getVgap() * @see java.awt.CardLayout#setHgap(int) ! * @since 1.1 */ public void setVgap(int vgap) { this.vgap = vgap; }