blob: e96abc784b38389083e57a0214e16b77854bfd30 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.keys;
import java.util.Comparator;
import org.eclipse.ui.keys.Key;
import org.eclipse.ui.keys.KeySequence;
import org.eclipse.ui.keys.KeyStroke;
/**
* Formats the keys in the internal key sequence grammar. This is used for
* persistence, and is not really intended for display to the user.
*
* @since 3.0
*/
public class FormalKeyFormatter extends AbstractKeyFormatter {
/**
* A comparator that guarantees that modifier keys will be sorted the same
* across different platforms.
*/
private static final Comparator FORMAL_MODIFIER_KEY_COMPARATOR = new AlphabeticModifierKeyComparator();
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.keys.KeyFormatter#format(org.eclipse.ui.keys.KeySequence)
*/
public String format(Key key) {
return key.toString();
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.keys.AbstractKeyFormatter#getKeyDelimiter()
*/
protected String getKeyDelimiter() {
return KeyStroke.KEY_DELIMITER;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.keys.AbstractKeyFormatter#getKeyStrokeDelimiter()
*/
protected String getKeyStrokeDelimiter() {
return KeySequence.KEY_STROKE_DELIMITER;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.keys.AbstractKeyFormatter#getModifierKeyComparator()
*/
protected Comparator getModifierKeyComparator() {
return FORMAL_MODIFIER_KEY_COMPARATOR;
}
}