?? scomp.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 + -