?? echoinfobean.java
字號:
package org.jboss.book.jmx.ex3;import javax.ejb.EntityBean;import javax.ejb.CreateException;import javax.ejb.EntityContext;/** * @author Scott.Stark@jboss.org * @version $Revision: 1.1 $ */public abstract class EchoInfoBean implements EntityBean{ public void setEntityContext(EntityContext ctx) { } public void unsetEntityContext() { } public void ejbActivate() { } public void ejbPassivate() { } public void ejbLoad() { } public void ejbStore() { } public void ejbRemove() { } public String ejbCreate(String key) throws CreateException { setKey(key); setInfo("echo info, arg="); return null; } public void ejbPostCreate(String id) { } public abstract String getKey(); public abstract void setKey(String key); public abstract String getInfo(); public abstract void setInfo(String info);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -