javax.swing.text
public static class: StyledEditorKit.FontFamilyAction [javadoc |
source]
java.lang.Object
javax.swing.AbstractAction
javax.swing.text.TextAction
javax.swing.text.StyledEditorKit$StyledTextAction
javax.swing.text.StyledEditorKit$FontFamilyAction
All Implemented Interfaces:
Action, Cloneable, Serializable
An action to set the font family in the associated
JEditorPane. This will use the family specified as
the command string on the ActionEvent if there is one,
otherwise the family that was initialized with will be used.
Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is
appropriate for short term storage or RMI between applications running
the same version of Swing. As of 1.4, support for long term storage
of all JavaBeansTM
has been added to the java.beans package.
Please see java.beans.XMLEncoder .
| Constructor: |
public FontFamilyAction(String nm,
String family) {
super(nm);
this.family = family;
}
Creates a new FontFamilyAction. Parameters:
nm - the action name
family - the font family
|
| Method from javax.swing.text.StyledEditorKit$FontFamilyAction Summary: |
|---|
|
actionPerformed |
| Methods from javax.swing.AbstractAction: |
|---|
|
addPropertyChangeListener, clone, firePropertyChange, getKeys, getPropertyChangeListeners, getValue, hasSelectedKey, isEnabled, isSelected, putValue, removePropertyChangeListener, setEnabled, setEnabledFromAction, setToolTipTextFromAction, shouldReconfigure |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.swing.text.StyledEditorKit$FontFamilyAction Detail: |
public void actionPerformed(ActionEvent e) {
JEditorPane editor = getEditor(e);
if (editor != null) {
String family = this.family;
if ((e != null) && (e.getSource() == editor)) {
String s = e.getActionCommand();
if (s != null) {
family = s;
}
}
if (family != null) {
MutableAttributeSet attr = new SimpleAttributeSet();
StyleConstants.setFontFamily(attr, family);
setCharacterAttributes(editor, attr, false);
} else {
UIManager.getLookAndFeel().provideErrorFeedback(editor);
}
}
}
|