?? jndimapmbean.java
字號:
package org.jboss.book.jmx.ex1;import javax.naming.NamingException;/** An example MBean that implicitly implements the Service interface methods. This is version 1 as shown in Listing 2.7. */public interface JNDIMapMBean{ public String getJndiName(); public void setJndiName(String jndiName) throws NamingException; public String[] getInitialValues(); public void setInitialValues(String[] keyValuePairs); public void start() throws Exception; public void stop() throws Exception;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -