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

📄 scomp.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/corba/com/bbn/openmap/layer/specialist/SComp.java,v $// $RCSfile: SComp.java,v $// $Revision: 1.3.2.1 $// $Date: 2004/10/14 18:26:31 $// $Author: dietrick $// // **********************************************************************package com.bbn.openmap.layer.specialist;import com.bbn.openmap.CSpecialist.*;/** * A SComp class is used to provide additional functionality for a * graphics object. It can be used to send a URL to a client, or to * tie objects together. */public class SComp extends _CompStub {    /** where we fill ourselves */    protected EComp self;    /** Construct ourselves without an ID */    public SComp() {        this("");    }    /**     * Construct ourselves with an ID     *      * @param cID our ID     */    public SComp(String cID) {        self = new EComp(this, cID);    }    public com.bbn.openmap.CSpecialist.ActionUnion[] sendGesture(                                                                 com.bbn.openmap.CSpecialist.MouseEvent gesture,                                                                 java.lang.String uniqueID) {        return new com.bbn.openmap.CSpecialist.ActionUnion[0];    }    /**     * Change our ID - not a good idea     *      * @param cID our new ID     */    public void cID(String cID) {        self.cID = cID;    }    /**     * get our ID     *      * @return our ID     */    public String cID() {        return self.cID;    }    /**     * return a struct containing info about ourselves <b>modifying     * this struct will modify the object that created it </b>     */    public EComp fill() {        return self;    }}

⌨️ 快捷键说明

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