Searched defs:LEADING (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingConstants.java119 public static final int LEADING = 10; field in interface:SwingConstants
H A DGroupLayout.java112 * with an alignment of {@code LEADING}. If the component orientation were
306 LEADING, enum constant in enum:GroupLayout.Alignment
378 setHorizontalGroup(createParallelGroup(Alignment.LEADING, true));
379 setVerticalGroup(createParallelGroup(Alignment.LEADING, true));
602 * {@code Alignment.LEADING}. This is a cover method for the more
609 return createParallelGroup(Alignment.LEADING);
640 * along the horizontal axis is treated as {@code LEADING}.
2602 default: // LEADING, or BASELINE
2644 "LEADING, TRAILING or CENTER");
2678 super(Alignment.LEADING, resizabl
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DTitledBorder.java112 static public final int LEADING = 4; field in class:TitledBorder
134 this(null, title, LEADING, DEFAULT_POSITION, null, null);
144 this(border, "", LEADING, DEFAULT_POSITION, null, null);
155 this(border, title, LEADING, DEFAULT_POSITION, null, null);
504 case LEADING:
669 if ((justification == LEADING) || (justification == DEFAULT_JUSTIFICATION)) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DFlowLayout.java48 * <li>{@link #LEADING LEADING}
114 public static final int LEADING = 3; field in class:FlowLayout
152 * <code>LEADING</code>
211 * <code>FlowLayout.CENTER</code>, <code>FlowLayout.LEADING</code>,
225 * <code>FlowLayout.CENTER</code>, <code>FlowLayout.LEADING</code>,
245 * <code>FlowLayout.LEADING</code>,
262 * <li><code>FlowLayout.LEADING</code>
277 case LEADING:
528 case LEADING
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java1678 LEADING, enum constant in enum:SwingUtilities2.Section
1694 * returns whether the point lies in {@code Section.LEADING} or
1707 * remains the same, {@code Section.LEADING} indicates that the point
1758 return forward ? Section.LEADING : Section.TRAILING;
1760 return forward ? Section.TRAILING : Section.LEADING;
1767 return pComp >= middle ? Section.TRAILING : Section.LEADING;
1769 return pComp < middle ? Section.TRAILING : Section.LEADING;

Completed in 54 milliseconds