JDK1.8中JConsoleContext源码

来源:互联网 发布:get music软件 编辑:程序博客网 时间:2024/05/17 13:10

JDK1.8中JConsoleContext源码

@Exportedpublic interface JConsoleContext {    String CONNECTION_STATE_PROPERTY = "connectionState";    MBeanServerConnection getMBeanServerConnection();    JConsoleContext.ConnectionState getConnectionState();    void addPropertyChangeListener(PropertyChangeListener var1);    void removePropertyChangeListener(PropertyChangeListener var1);    @Exported    public static enum ConnectionState {        CONNECTED,        DISCONNECTED,        CONNECTING;        private ConnectionState() {        }    }}



@Documented@Retention(RetentionPolicy.RUNTIME)@Target({ElementType.TYPE, ElementType.PACKAGE})@Exportedpublic @interface Exported {    boolean value() default true;}


0 0
原创粉丝点击