Searched defs:label (Results 26 - 50 of 152) sorted by relevance

1234567

/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLOptGroupElement.java58 * Assigns a label to this option group. See the label attribute
62 public void setLabel(String label); argument
/openjdk7/jdk/test/com/sun/jdi/connect/spi/
H A DSimpleLaunchingConnector.java51 String label; field in class:SimpleLaunchingConnector.StringArgumentImpl
55 StringArgumentImpl(String name, String label, String description, String value) { argument
57 this.label = label;
66 public String label() { method in class:SimpleLaunchingConnector.StringArgumentImpl
67 return label;
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DTemperatureTableTest.java45 void checkLocation(Location loc, String label, argument
51 println(label + " sourceName: " + sourceName);
53 failure("FAIL: " + label +
60 println(label + " sourcePath: " + sourcePath);
62 failure("FAIL: " + label +
69 println(label + " line number: " + ln);
71 failure("FAIL: " + label +
77 void checkLocation(String stratum, Location loc, String label, argument
83 println(label + "(" + stratum + ")" +
86 failure("FAIL: " + label
[all...]
/openjdk7/jdk/test/java/awt/Focus/SimpleWindowActivationTest/
H A DSimpleWindowActivationTest.java46 private static Label label; field in class:SimpleWindowActivationTest
82 clickOn(getClickPoint(label));
102 clickOn(getClickPoint(label));
116 label = new Label("label");
121 window.add(label);
/openjdk7/jdk/test/sun/security/provider/PolicyFile/
H A DCanonPath.java48 private static void printCanonPath(String label, String path) argument
52 System.out.println(label + " path = " + f.getCanonicalPath());
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/
H A DBasics.java287 static void printStrings(String label, String [] strs) { argument
288 System.out.println(label);
/openjdk7/jdk/test/javax/swing/plaf/nimbus/
H A DColorCustomizationTest.java50 final JLabel label; field in class:ColorCustomizationTest
54 label = new JLabel();
55 label.setSize(200, 100);
75 SwingUtilities.updateComponentTreeUI(label);
76 label.paint(g);
77 if (label.getBackground().getRGB() != c.getRGB()) {
79 System.err.println(" found: " + label.getBackground());
93 Color defaultColor = label.getBackground();
98 label.putClientProperty("Nimbus.Overrides", defs);
104 label
[all...]
/openjdk7/langtools/test/tools/javac/processing/6499119/
H A DClassProcessor.java116 private void checkEqual(String label, String actual, String expect) { argument
118 error("Unexpected value for " + label + "; actual=" + actual + ", expected=" + expect);
/openjdk7/langtools/test/tools/javac/util/
H A DT6597678.java94 <T> void checkEqual(String label, T actual, T expected) { argument
97 "Unexpected value for " + label
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DNameNode.java34 * has a label, which is its name relative to its parent (so the
35 * node at Sun.COM has label "Sun"). Each node has a hashtable of
53 private String label; // name of this node relative to its field in class:NameNode
59 NameNode(String label) { argument
60 this.label = label;
68 protected NameNode newNameNode(String label) { argument
69 return new NameNode(label);
77 return label;
105 * Returns the child node given the hash key (the down-cased label)
[all...]
H A DZoneNode.java62 ZoneNode(String label) { argument
63 super(label);
66 protected NameNode newNameNode(String label) { argument
67 return new ZoneNode(label);
111 for (int i = 1; i < fqdn.size(); i++) { // "i=1" to skip root label
127 // assert zone.get(0).equals(""); // zone has root label
128 // assert (zone.size() == (depth() + 1)); // +1 due to root label
/openjdk7/jdk/src/share/classes/java/awt/
H A DPopupMenu.java79 * @param label a non-<code>null</code> string specifying
80 * the popup menu's label
85 public PopupMenu(String label) throws HeadlessException { argument
86 super(label);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaLabelUI.java91 protected Color getDisabledLabelColor(final JLabel label) { argument
92 final Color fg = label.getForeground();
94 final Object colorProperty = label.getClientProperty(DISABLED_COLOR_KEY);
101 label.putClientProperty(DISABLED_COLOR_KEY, newDisabledColor);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWButtonPeer.java42 String label = ((Button)target).getLabel();
43 if ( label == null ) {
44 label = "";
46 return new Dimension(fm.stringWidth(label) + 14,
55 public native void setLabel(String label); argument
H A DWCheckboxPeer.java37 public native void setLabel(String label); argument
H A DWLabelPeer.java36 String label = ((Label)target).getText();
37 if (label == null)
38 label = "";
39 return new Dimension(fm.stringWidth(label) + 14, fm.getHeight() + 8);
45 // if need then paint label
54 public native void setText(String label); argument
/openjdk7/jdk/src/share/classes/sun/security/internal/spec/
H A DTlsPrfParameterSpec.java48 private final String label; field in class:TlsPrfParameterSpec
59 * @param label the label to use in the calculation
69 * @throws NullPointerException if label or seed is null
72 public TlsPrfParameterSpec(SecretKey secret, String label, argument
75 if ((label == null) || (seed == null)) {
76 throw new NullPointerException("label and seed must not be null");
82 this.label = label;
102 * Returns the label t
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DLabeledComponent.java36 JLabel label; field in class:LabeledComponent
47 this.label = new JLabel(text, JLabel.RIGHT);
50 label.setLabelFor(comp);
52 label.setDisplayedMnemonic(mnemonic);
55 add(label, BorderLayout.WEST);
71 label.setText(str);
83 lc.label.setPreferredSize(null);
84 // int w = lc.label.getMinimumSize().width;
85 int w = lc.label.getPreferredSize().width;
95 JLabel label
[all...]
/openjdk7/langtools/test/tools/javac/file/
H A DT7018098.java111 <T> void checkEqual(String label, T actual, T expected) { argument
114 "Unexpected value for " + label
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DUnionEntry.java157 boolean has (Expression label) argument
166 if (exp.equals (label) || exp.value ().equals (label.value ()))
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorChooserPanel.java49 private final JLabel label; field in class:ColorChooserPanel
57 this.label = new JLabel(null, null, SwingConstants.RIGHT);
109 add(this.label, gbc);
128 this.label.setLabelFor(this.text);
135 String label = this.model.getText(this, "HexCode"); // NON-NLS: suffix
136 boolean visible = label != null;
138 this.text.getAccessibleContext().setAccessibleDescription(label);
139 this.label.setVisible(visible);
141 this.label.setText(label);
[all...]
H A DSlidingSpinner.java39 private final JComponent label; field in class:SlidingSpinner
46 SlidingSpinner(ColorPanel panel, JComponent label) { argument
48 this.label = label;
58 return this.label;
93 this.label.setVisible(visible);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalDesktopIconUI.java47 JLabel label; field in class:MetalDesktopIconUI
83 label = new JLabel(drag);
85 label.setBorder( new MatteBorder( 0, 2, 0, 1, desktopIcon.getBackground()) );
88 desktopIcon.add(label, BorderLayout.WEST);
93 desktopIcon.remove(label);
/openjdk7/jdk/src/share/classes/java/net/
H A DIDN.java95 * <p> A label is an individual part of a domain name. The original ToASCII operation,
96 * as defined in RFC 3490, only operates on a single label. This method can handle
97 * both label and entire domain name, by assuming that labels in a domain name are
101 * used as label separators, this method also changes all of them to &#0092;u002E (full stop)
154 * <p> A label is an individual part of a domain name. The original ToUnicode operation,
155 * as defined in RFC 3490, only operates on a single label. This method can handle
156 * both label and entire domain name, by assuming that labels in a domain name are
244 // toASCII operation; should only apply to a single label
246 private static String toASCIIInternal(String label, int flag) argument
250 boolean isASCII = isAllASCII(label);
324 toUnicodeInternal(String label, int flag) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/connect/
H A DConnector.java104 * Returns a short human-readable label for this argument.
106 * @return a label for this argument
108 String label(); method in interface:Connector.Argument

Completed in 86 milliseconds

1234567