?? deployableunitdescriptor.java
字號(hào):
package javax.slee.management;import java.util.Date;import javax.slee.ComponentID;/** * This interface provides access to deployment-specific attributes that * describe an installed deployable unit. */public interface DeployableUnitDescriptor { /** * Get the URL that the deployable unit was installed from. * @return the URL that the deployable unit was installed from. */ public String getURL(); /** * Get the date that the deployable unit was installed. * @return the date that the deployable unit was installed. */ public Date getDeploymentDate(); /** * Get the component identifiers of the components installed with this * deployable unit. * @return the component identifiers of the components installed with * this deployable unit. */ public ComponentID[] getComponents();}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -