| |
|
| java.lang.Object org.eclipse.ui.internal.keys.AbstractKeyFormatter
All known Subclasses: org.eclipse.ui.internal.keys.FormalKeyFormatter, org.eclipse.ui.internal.keys.MacKeyFormatter, org.eclipse.ui.internal.keys.KdeKeyFormatter, org.eclipse.ui.internal.keys.EmacsKeyFormatter, org.eclipse.ui.internal.keys.NativeKeyFormatter,
AbstractKeyFormatter | abstract public class AbstractKeyFormatter implements IKeyFormatter(Code) | | An abstract implementation of a key formatter that provides a lot of common
key formatting functionality. It is recommended that those people
implementing their own key formatters subclass from here, rather than
implementing KeyFormatter directly.
since: 3.0 |
KEY_DELIMITER_KEY | final protected static String KEY_DELIMITER_KEY(Code) | | The key for the delimiter between keys. This is used in the
internationalization bundles.
|
KEY_STROKE_DELIMITER_KEY | final protected static String KEY_STROKE_DELIMITER_KEY(Code) | | The key for the delimiter between key strokes. This is used in the
internationalization bundles.
|
getKeyDelimiter | abstract protected String getKeyDelimiter()(Code) | | An accessor for the delimiter you wish to use between keys. This is used
by the default format implementations to determine the key delimiter.
The delimiter to use between keys; should not be null . |
getKeyStrokeDelimiter | abstract protected String getKeyStrokeDelimiter()(Code) | | An accessor for the delimiter you wish to use between key strokes. This
used by the default format implementations to determine the key stroke
delimiter.
The delimiter to use between key strokes; should not be null . |
getModifierKeyComparator | abstract protected Comparator getModifierKeyComparator()(Code) | | An accessor for the comparator to use for sorting modifier keys. This is
used by the default format implementations to sort the modifier keys
before formatting them into a string.
The comparator to use to sort modifier keys; must not be null . |
|
|
|