graphickeyevent.java

来自「GEo 地理操作源代码」· Java 代码 · 共 34 行

JAVA
34
字号
/************************************************************************************************** ** ** $Id: GraphicKeyEvent.java,v 1.4 2004/05/04 20:26:50 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/go/display/event/GraphicKeyEvent.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.go.display.event;// J2SE direct dependenciesimport java.awt.event.KeyEvent;/** * Provides a common abstraction for the various event objects pertaining to key * events on a {@link org.opengis.go.display.primitive.Graphic}. *  * @version $Revision: 1.4 $, $Date: 2004/05/04 20:26:50 $ * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> */public interface GraphicKeyEvent extends GraphicEvent {    /**     * Returns the <code>KeyEvent</code> that this event references.     *     * @return the <code>KeyEvent</code> referenced by this event.     *     * @revisit This {@link KeyEvent} implementation is specific to AWT and Swing     *          (i.e. is not used by SWT as far as I know).     */    public KeyEvent getKeyEvent();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?