Searched refs:LEADING (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingConstants.java119 public static final int LEADING = 10; field in interface:SwingConstants
H A DJRadioButton.java181 setHorizontalAlignment(LEADING);
H A DJCheckBox.java176 setHorizontalAlignment(LEADING);
H A DJLabel.java124 private int horizontalAlignment = LEADING;
156 * <code>LEADING</code> or
178 * <code>LEADING</code> or
193 this(text, null, LEADING);
207 * <code>LEADING</code> or
234 this("", null, LEADING);
594 * LEADING or TRAILING.
602 (key == LEADING) ||
727 * <code>LEADING</code> or
747 * <code>LEADING</cod
[all...]
H A DJTextField.java306 * <li><code>JTextField.LEADING</code>
323 * <li><code>JTextField.LEADING</code>
337 * LEADING (the default) or TRAILING
339 * LEADING JTextField.LEADING TRAILING JTextField.TRAILING
345 (alignment == RIGHT)|| (alignment == LEADING) ||
808 private int horizontalAlignment = LEADING;
892 } else if (horizontalAlignment == LEADING) {
893 horizontalAlignmentString = "LEADING";
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Settings/src/com/sun/hotspot/igv/settings/
H A DViewPanel.java69 jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
72 .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
77 .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
84 jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
87 .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
105 layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
112 layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DEditFilterDialog.java100 layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
103 .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
105 .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
109 .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
119 layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
126 .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/
H A DBytecodeViewTopComponent.java84 layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
88 layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DControlFlowTopComponent.java89 layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
93 layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
/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/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/test/java/awt/Window/TranslucentShapedFrameTest/
H A DTranslucentShapedFrameTest.java173 layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
176 .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
189 .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
206 layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTextFieldUI.java238 if(align==LEADING) {
246 if(align==LEADING) {
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DFieldView.java109 if(align==LEADING) {
117 if(align==LEADING) {
/openjdk7/jdk/src/share/classes/sun/swing/
H A DDefaultLayoutStyle.java221 hAlign == SwingConstants.LEADING)) ||
233 (!ltr && (hAlign == SwingConstants.LEADING)));
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;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTableHeaderUI.java221 setHorizontalAlignment(JLabel.LEADING);
H A DSynthInternalFrameTitlePane.java54 // Alignment for the title, one of SwingConstants.(LEADING|TRAILING|CENTER)
130 titleAlignment = SwingConstants.LEADING;
279 if (titleAlignment == SwingConstants.LEADING) {
283 titleAlignment = SwingConstants.LEADING;
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DAboutDialog.java106 JLabel brandLogo = new JLabel(brandLogoIcon, JLabel.LEADING);
/openjdk7/jdk/test/javax/swing/JMenuItem/6209975/
H A Dbug6209975.java125 item.setHorizontalTextPosition(SwingConstants.LEADING);
/openjdk7/jdk/src/share/classes/sun/awt/shell/
H A DShellFolder.java439 SwingConstants.LEADING, true, null,
445 SwingConstants.LEADING, true, null,
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTableHeaderUI.java80 setHorizontalAlignment(LEADING);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTableHeaderUI.java56 defaultRenderer.setHorizontalAlignment(SwingConstants.LEADING);
/openjdk7/jdk/src/share/classes/sun/swing/table/
H A DDefaultTableCellHeaderRenderer.java90 setHorizontalTextPosition(JLabel.LEADING);
/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceDialog.java961 JPanel pnlTop = new JPanel(new FlowLayout(FlowLayout.LEADING));
972 new JPanel(new FlowLayout(FlowLayout.LEADING));
981 JPanel pnlBottom = new JPanel(new FlowLayout(FlowLayout.LEADING));
1404 JLabel.LEADING);
1411 JLabel.LEADING);
1427 JLabel.LEADING);
1434 " " + unitsMsg, JLabel.LEADING);
2780 super(new FlowLayout(FlowLayout.LEADING));

Completed in 110 milliseconds

12