GridBagConstraints.java (FIRST_LINE_ENT, [...]): New constants.
2003-02-13 Michael Koch <konqueror@gmx.de> * java/awt/GridBagConstraints.java (FIRST_LINE_ENT, FIRST_LINE_START, LAST_LINE_END, LAST_LINE_START, LINE_END, LINE_START, PAGE_END, PAGE_START): New constants. * java/awt/KeyboardFocusManager.java (setGlobalCurrentFocusCycleRoot): Must be public. * java/awt/MenuComponent.java (MenuComponent): Must be public. * java/awt/Toolkit.java: Added some empty lines to make documentation more readable. (getFontPeer): Added @deprecated. (getColorModel): Added exception documentation. (getProperty): Fixed documentation. From-SVN: r62822
This commit is contained in:
parent
22ffcc6f9f
commit
4e3243ef0e
5 changed files with 91 additions and 3 deletions
|
@ -80,6 +80,52 @@ public class GridBagConstraints implements Cloneable, Serializable
|
|||
/** Occupy all remaining cells. */
|
||||
public static final int REMAINDER = 0;
|
||||
|
||||
/**
|
||||
* Position to where the first text line would end. Equals to NORTHEAST for
|
||||
* horizontal left-to-right orientations.
|
||||
*/
|
||||
public static final int FIRST_LINE_END = 24;
|
||||
|
||||
/**
|
||||
* Position to where the first text line would start. Equals to NORTHWEST for
|
||||
* horizontal left-to-right orientations.
|
||||
*/
|
||||
public static final int FIRST_LINE_START = 23;
|
||||
|
||||
/**
|
||||
* Position to where the last text line would end. Equals to SOUTHEAST for
|
||||
* horizontal left-to-right orientations.
|
||||
*/
|
||||
public static final int LAST_LINE_END = 26;
|
||||
|
||||
/**
|
||||
* Position to where the last text line would start. Equals to SOUTHWEST for
|
||||
* horizontal left-to-right orientations.
|
||||
*/
|
||||
public static final int LAST_LINE_START = 25;
|
||||
|
||||
/**
|
||||
* Position to where a text line would end. Equals to EAST for
|
||||
* left-to-right orientations.
|
||||
*/
|
||||
public static final int LINE_END = 22;
|
||||
|
||||
/**
|
||||
* Position to where a text line would start. Equals to WEST for
|
||||
* left-to-right orientations.
|
||||
*/
|
||||
public static final int LINE_START = 21;
|
||||
|
||||
/**
|
||||
* Position to where a page ends. Equals SOUTH for horizontal orientations.
|
||||
*/
|
||||
public static final int PAGE_END = 20;
|
||||
|
||||
/**
|
||||
* Position to where a page starts. Equals NORTH for horizontal orientations.
|
||||
*/
|
||||
public static final int PAGE_START = 19;
|
||||
|
||||
public int anchor;
|
||||
public int fill;
|
||||
public int gridheight;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue