📄 deployableunitdescriptor.java
字号:
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();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -