All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.ui.keys.NaturalKey Maven / Gradle / Ivy

Go to download

This plug-in contains the bulk of the Workbench implementation, and depends on JFace, SWT, and Core Runtime. It cannot be used independently from org.eclipse.ui. Workbench client plug-ins should not depend directly on this plug-in.

The newest version!
/*******************************************************************************
 * 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.keys;

/**
 * 

* Instances of NaturalKey represent all keys on the keyboard not * known by convention as 'modifier keys'. These can either be keys that belong * to a natural language of some kind(e.g., "A", "1"), any Unicode character * (e.g., "backspace"), or they can be special controls keys used by computers * (e.g., "F10", "PageUp"). *

*

* NaturalKey objects are immutable. Clients are not permitted to * extend this class. *

* * @deprecated Please use org.eclipse.jface.bindings.keys.KeyStroke and * org.eclipse.jface.bindings.keys.KeyLookupFactory * @since 3.0 */ public abstract class NaturalKey extends Key { /** * Constructs an instance of NaturalKey given a name. * * @param key * The key to be wrapped. */ NaturalKey(final int key) { super(key); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy