scomp.java

来自「openmap java写的开源数字地图程序. 用applet实现,可以像g」· Java 代码 · 共 82 行

JAVA
82
字号
// **********************************************************************// // <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 + =
减小字号Ctrl + -
显示快捷键?