⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mapmouseadapter.java

📁 openmap java写的开源数字地图程序. 用applet实现,可以像google map 那样放大缩小地图.
💻 JAVA
字号:
// **********************************************************************// // <copyright>// //  BBN Technologies//  10 Moulton Street//  Cambridge, MA 02138//  (617) 873-8000// //  Copyright (C) BBNT Solutions LLC. All rights reserved.// // </copyright>// **********************************************************************// // $Source: /cvs/distapps/openmap/src/openmap/com/bbn/openmap/event/MapMouseAdapter.java,v $// $RCSfile: MapMouseAdapter.java,v $// $Revision: 1.2.2.1 $// $Date: 2004/10/14 18:26:45 $// $Author: dietrick $// // **********************************************************************package com.bbn.openmap.event;import java.awt.event.MouseEvent;/** * Basic implementation of the MapMouseListener interface provided as * a convenience. If you extend an object from this adapter, you just * have to implement the methods that you want to deal with. */public class MapMouseAdapter implements MapMouseListener {    /**     * Return a list of the modes that are interesting to the     * MapMouseListener. You MUST override this with the modes you're     * interested in.     */    public String[] getMouseModeServiceList() {        return null;    }    // Mouse Listener events    ////////////////////////    /**     * Invoked when a mouse button has been pressed on a component.     *      * @param e MouseEvent     * @return false     */    public boolean mousePressed(MouseEvent e) {        return false; // did not handle the event    }    /**     * Invoked when a mouse button has been released on a component.     *      * @param e MouseEvent     * @return false     */    public boolean mouseReleased(MouseEvent e) {        return false;    }    /**     * Invoked when the mouse has been clicked on a component.     *      * @param e MouseEvent     * @return false     */    public boolean mouseClicked(MouseEvent e) {        return false;    }    /**     * Invoked when the mouse enters a component.     *      * @param e MouseEvent     */    public void mouseEntered(MouseEvent e) {}    /**     * Invoked when the mouse exits a component.     *      * @param e MouseEvent     */    public void mouseExited(MouseEvent e) {}    // Mouse Motion Listener events    ///////////////////////////////    /**     * Invoked when a mouse button is pressed on a component and then     * dragged. The listener will receive these events if it     *      * @param e MouseEvent     * @return false     */    public boolean mouseDragged(MouseEvent e) {        return false;    }    /**     * Invoked when the mouse button has been moved on a component     * (with no buttons down).     *      * @param e MouseEvent     * @return false     */    public boolean mouseMoved(MouseEvent e) {        return false;    }    /**     * Handle a mouse cursor moving without the button being pressed.     * Another layer has consumed the event.     */    public void mouseMoved() {}}

⌨️ 快捷键说明

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