Lines Matching defs:AbstractButton

75 public abstract class AbstractButton extends JComponent implements ItemSelectable, SwingConstants {
344 // AbstractButton.fireItemStateChanged also fires the
786 * {@code AbstractButton}'s default is {@code SwingConstants.CENTER},
805 * {@code AbstractButton}'s default is {@code SwingConstants.CENTER},
1085 * @param a the <code>Action</code> for the <code>AbstractButton</code>,
1186 * the action should override this to return true. AbstractButton's
1351 extends ActionPropertyChangeListener<AbstractButton> {
1352 ButtonActionPropertyChangeListener(AbstractButton b, Action a) {
1355 protected void actionPropertyChanged(AbstractButton button,
1820 * and feel. Subtypes of <code>AbstractButton</code>
1887 * to this AbstractButton with addChangeListener().
1944 * to this AbstractButton with addActionListener().
2012 e = new ActionEvent(AbstractButton.this,
2041 e = new ItemEvent(AbstractButton.this,
2043 AbstractButton.this,
2136 * to this AbstractButton with addItemListener().
2254 * Returns a string representation of this <code>AbstractButton</code>.
2264 * @return a string representation of this <code>AbstractButton</code>
2368 * <code>AbstractButton</code> class. It provides an implementation of the
2400 name = AbstractButton.this.getText();
2531 return UIManager.getString("AbstractButton.clickText");
2557 * @see AbstractButton#isSelected
2608 View view = (View)AbstractButton.this.getClientProperty("html");
2621 * Note: the AbstractButton must have a valid size (e.g. have
2632 View view = (View) AbstractButton.this.getClientProperty("html");
2653 * Note: the AbstractButton must have a valid size (e.g. have
2664 View view = (View) AbstractButton.this.getClientProperty("html");
2691 View view = (View) AbstractButton.this.getClientProperty("html");
2894 View view = (View) AbstractButton.this.getClientProperty("html");
2952 View view = (View) AbstractButton.this.getClientProperty("html");
2968 String text = AbstractButton.this.getText();
2969 Icon icon = (AbstractButton.this.isEnabled()) ? AbstractButton.this.getIcon() : AbstractButton.this.getDisabledIcon();
2980 paintViewInsets = AbstractButton.this.getInsets(paintViewInsets);
2983 paintViewR.width = AbstractButton.this.getWidth() - (paintViewInsets.left + paintViewInsets.right);
2984 paintViewR.height = AbstractButton.this.getHeight() - (paintViewInsets.top + paintViewInsets.bottom);
2987 AbstractButton.this,
2991 AbstractButton.this.getVerticalAlignment(),
2992 AbstractButton.this.getHorizontalAlignment(),
2993 AbstractButton.this.getVerticalTextPosition(),
2994 AbstractButton.this.getHorizontalTextPosition(),
3022 return AbstractButton.this.getToolTipText();
3045 int mnemonic = AbstractButton.this.getMnemonic();