Lines Matching defs:JLabel

52  * A <code>JLabel</code> object can display
102 public class JLabel extends JComponent implements SwingConstants, Accessible
143 * Creates a <code>JLabel</code> instance with the specified
158 public JLabel(String text, Icon icon, int horizontalAlignment) {
167 * Creates a <code>JLabel</code> instance with the specified
180 public JLabel(String text, int horizontalAlignment) {
185 * Creates a <code>JLabel</code> instance with the specified text.
191 public JLabel(String text) {
196 * Creates a <code>JLabel</code> instance with the specified
209 public JLabel(Icon image, int horizontalAlignment) {
214 * Creates a <code>JLabel</code> instance with the specified image.
220 public JLabel(Icon image) {
225 * Creates a <code>JLabel</code> instance with
232 public JLabel() {
432 * Set the icon to be displayed if this JLabel is "disabled"
433 * (JLabel.setEnabled(false)).
897 * Returns a string representation of this JLabel. This method
903 * @return a string representation of this JLabel.
1061 name = JLabel.this.getText();
1110 Component c = JLabel.this.getLabelFor();
1125 View view = (View)JLabel.this.getClientProperty("html");
1144 View view = (View) JLabel.this.getClientProperty("html");
1170 View view = (View) JLabel.this.getClientProperty("html");
1197 View view = (View) JLabel.this.getClientProperty("html");
1400 View view = (View) JLabel.this.getClientProperty("html");
1458 View view = (View) JLabel.this.getClientProperty("html");
1474 String text = JLabel.this.getText();
1475 Icon icon = (JLabel.this.isEnabled()) ? JLabel.this.getIcon() : JLabel.this.getDisabledIcon();
1486 paintViewInsets = JLabel.this.getInsets(paintViewInsets);
1489 paintViewR.width = JLabel.this.getWidth() - (paintViewInsets.left + paintViewInsets.right);
1490 paintViewR.height = JLabel.this.getHeight() - (paintViewInsets.top + paintViewInsets.bottom);
1493 (JComponent)JLabel.this,
1497 JLabel.this.getVerticalAlignment(),
1498 JLabel.this.getHorizontalAlignment(),
1499 JLabel.this.getVerticalTextPosition(),
1500 JLabel.this.getHorizontalTextPosition(),
1504 JLabel.this.getIconTextGap());
1528 return JLabel.this.getToolTipText();
1551 int mnemonic = JLabel.this.getDisplayedMnemonic();