📄 customcontrolseditingeditormenu.java.svn-base
字号:
package test;
import java.io.IOException;
import java.net.UnknownHostException;
import com.esri.arcgis.controls.ControlsEditingEditorMenu;
import com.esri.arcgis.interop.AutomationException;
import com.esri.arcgis.interop.Dispatch;
import com.esri.arcgis.systemUI.IItemDef;
import com.esri.arcgis.systemUI.IMenuDef;
public class CustomControlsEditingEditorMenu extends ControlsEditingEditorMenu{
private String caption = "";
public CustomControlsEditingEditorMenu() throws IOException, UnknownHostException {
super();
}
@Override
public boolean equals(Object o) {
return super.equals(o);
}
@Override
public IMenuDef getAsIMenuDef() {
return super.getAsIMenuDef();
}
@Override
public String getCaption() throws IOException, AutomationException {
return this.caption;
}
public void setCaption(String caption){
this.caption = caption;
}
public String getToolTip(){
return "sdfsdf";
}
@Override
public int getItemCount() throws IOException, AutomationException {
return super.getItemCount();
}
@Override
public void getItemInfo(int pos, IItemDef itemDef) throws IOException, AutomationException {
super.getItemInfo(pos, itemDef);
}
@Override
public Dispatch getJintegraDispatch() {
return super.getJintegraDispatch();
}
@Override
public String getName() throws IOException, AutomationException {
return super.getName();
}
@Override
public int hashCode() {
return super.hashCode();
}
@Override
public void release() {
super.release();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -