Java的诠释:诠释与思考 : 注释 « 语言基础知识 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 语言基础知识 » 注释屏幕截图 
Java的诠释:诠释与思考
Java的诠释:诠释与思考
 

/*
License for Java 1.5 'Tiger': A Developer's Notebook
     (O'Reilly) example package

Java 1.5 'Tiger': A Developer's Notebook (O'Reilly) 
by Brett McLaughlin and David Flanagan.
ISBN: 0-596-00738-8

You can use the examples and the source code any way you want, but
please include a reference to where it comes from if you use it in
your own products or services. Also note that this software is
provided by the author "as is", with no expressed or implied warranties. 
In no event shall the author be liable for any direct or indirect
damages arising in any way out of the use of this software.
*/
import java.io.IOException;
import java.io.PrintStream;
import java.lang.reflect.AnnotatedElement;
import java.lang.annotation.Annotation;

import java.util.Date;
import java.lang.annotation.Documented;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

public class ReflectionTester {

  public ReflectionTester() {
  }

  public void testAnnotationPresent(PrintStream outthrows IOException {
    Class c = Super.class;
    boolean inProgress = c.isAnnotationPresent(InProgress.class);
    if (inProgress) {
      out.println("Super is In Progress");
    else {
      out.println("Super is not In Progress");
    }
  }

  public void testInheritedAnnotation(PrintStream outthrows IOException {
    Class c = Sub.class;
    boolean inProgress = c.isAnnotationPresent(InProgress.class);
    if (inProgress) {
      out.println("Sub is In Progress");
    else {
      out.println("Sub is not In Progress");
    }
  }

  public void testGetAnnotation(PrintStream out
    throws IOException, NoSuchMethodException {

    Class c = AnnotationTester.class;
    AnnotatedElement element = c.getMethod("calculateInterest"
                                  float.class, float.class);

    GroupTODO groupTodo = element.getAnnotation(GroupTODO.class);
    String assignedTo = groupTodo.assignedTo();

    out.println("TODO Item on Annotation Tester is assigned to: '" 
        assignedTo + "'");
  }

  public void printAnnotations(AnnotatedElement e, PrintStream out)
    throws IOException {

    out.printf("Printing annotations for '%s'%n%n", e.toString());

    Annotation[] annotations = e.getAnnotations();
    for (Annotation a : annotations) {
      out.printf("    * Annotation '%s' found%n"
        a.annotationType().getName());
    }
  }

  public static void main(String[] args) {
    try {
      ReflectionTester tester = new ReflectionTester();

      tester.testAnnotationPresent(System.out);
      tester.testInheritedAnnotation(System.out);

      tester.testGetAnnotation(System.out);

      Class c = AnnotationTester.class;
      AnnotatedElement element = c.getMethod("calculateInterest"
                                    float.class, float.class);      
      tester.printAnnotations(element, System.out);
    catch (Exception e) {
      e.printStackTrace();
    
  }
}

class Sub extends Super {

  public void print(PrintStream outthrows IOException {
    out.println("Sub printing...");
  }
}

@InProgress class Super {

  public void print(PrintStream outthrows IOException {
    out.println("Super printing...");
  }
}

@Documented
@Retention(RetentionPolicy.RUNTIME)
@interface GroupTODO {

  public enum Severity CRITICAL, IMPORTANT, TRIVIAL, DOCUMENTATION };

  Severity severity() default Severity.IMPORTANT;
  String item();
  String assignedTo();
  String dateAssigned();
}

/**
 * Marker annotation to indicate that a method or class
 *   is still in progress.
 */
@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@interface InProgress { }

           
         
  
Related examples in the same category
1. 简单的注释
2. 注释阅读器
3. 注释演示
4. An annotation type declaration. An annotation type declaration.
5. 诠释型宣言2诠释型宣言2
6. 查看所有类和方法的说明查看所有类和方法的说明
7. An annotation type declaration and include defaults. An annotation type declaration and include defaults.
8. A marker annotation. A marker annotation.
9. A single member annotation. A single member annotation.
10. Java的注释:不推荐和等级
11. Java的注释:超级替补仪Java的注释:超级替补仪
12. Java的注释仪
13. 覆写诠释测试
14. 插入注释压制预警
15. 禁止警告蚂蚁脚本
16. How do I mark method as deprecated?
17. 什么是SuppressWarnings注释?
18. 使用覆写注释
19. SuppressWarnings注释
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.