• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test3;
2 
3 import java.lang.annotation.*;
4 
5 @Retention(RetentionPolicy.RUNTIME)
6 public @interface ChibaAnnotation {
name()7     String name();
version()8     String version();
description()9     String description();
interfaceName()10     String interfaceName();
11 }
12