Lines Matching defs:JLabel

57  * A <code>JLabel</code> object can display
107 public class JLabel extends JComponent implements SwingConstants, Accessible
144 * Creates a <code>JLabel</code> instance with the specified
159 public JLabel(String text, Icon icon, int horizontalAlignment) {
168 * Creates a <code>JLabel</code> instance with the specified
181 public JLabel(String text, int horizontalAlignment) {
186 * Creates a <code>JLabel</code> instance with the specified text.
192 public JLabel(String text) {
197 * Creates a <code>JLabel</code> instance with the specified
210 public JLabel(Icon image, int horizontalAlignment) {
215 * Creates a <code>JLabel</code> instance with the specified image.
221 public JLabel(Icon image) {
226 * Creates a <code>JLabel</code> instance with
233 public JLabel() {
439 * Set the icon to be displayed if this JLabel is "disabled"
440 * (JLabel.setEnabled(false)).
921 * Returns a string representation of this JLabel. This method
927 * @return a string representation of this JLabel.
1087 name = JLabel.this.getText();
1136 Component c = JLabel.this.getLabelFor();
1151 View view = (View)JLabel.this.getClientProperty("html");
1170 View view = (View) JLabel.this.getClientProperty("html");
1197 View view = (View) JLabel.this.getClientProperty("html");
1224 View view = (View) JLabel.this.getClientProperty("html");
1427 View view = (View) JLabel.this.getClientProperty("html");
1485 View view = (View) JLabel.this.getClientProperty("html");
1501 String text = JLabel.this.getText();
1502 Icon icon = (JLabel.this.isEnabled()) ? JLabel.this.getIcon() : JLabel.this.getDisabledIcon();
1513 paintViewInsets = JLabel.this.getInsets(paintViewInsets);
1516 paintViewR.width = JLabel.this.getWidth() - (paintViewInsets.left + paintViewInsets.right);
1517 paintViewR.height = JLabel.this.getHeight() - (paintViewInsets.top + paintViewInsets.bottom);
1520 (JComponent)JLabel.this,
1524 JLabel.this.getVerticalAlignment(),
1525 JLabel.this.getHorizontalAlignment(),
1526 JLabel.this.getVerticalTextPosition(),
1527 JLabel.this.getHorizontalTextPosition(),
1531 JLabel.this.getIconTextGap());
1555 return JLabel.this.getToolTipText();
1578 int mnemonic = JLabel.this.getDisplayedMnemonic();