version.java

来自「jdk-6u10-docs java开发宝典」· Java 代码 · 共 22 行

JAVA
22
字号
/** * Version.java - This annotation allows to supply * the current version of the MBean interface. */package com.example.mxbeans;import java.lang.annotation.Documented;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;import javax.management.DescriptorKey;@Documented@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)public @interface Version {    @DescriptorKey("version")    String value();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?