?? myannotation.java
字號:
/**
* Copyright (c)上海煙草(集團)公司與上海康時信息系統有限公司。
*/
package com.test.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
*
* @author xywang
* @since 2009-2-16
* @version 1.0
*
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation{
public String value();
public String[] multiValues();
int number() default 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -