jaxws/src/share/classes/com/sun/codemodel/internal/JDefinedClass.java
changeset 2719 99d59312294b
parent 2678 57cf2a1c1a05
equal deleted inserted replaced
2679:1d6ff0427a13 2719:99d59312294b
   426      *      Name of the annotation Type declaration to be added to this package
   426      *      Name of the annotation Type declaration to be added to this package
   427      * @return
   427      * @return
   428      *      newly created Annotation Type Declaration
   428      *      newly created Annotation Type Declaration
   429      * @exception JClassAlreadyExistsException
   429      * @exception JClassAlreadyExistsException
   430      *      When the specified class/interface was already created.
   430      *      When the specified class/interface was already created.
       
   431 
   431      */
   432      */
   432     public JDefinedClass _annotationTypeDeclaration(String name) throws JClassAlreadyExistsException {
   433     public JDefinedClass _annotationTypeDeclaration(String name) throws JClassAlreadyExistsException {
   433         return _class (JMod.PUBLIC,name,ClassType.ANNOTATION_TYPE_DECL);
   434         return _class (JMod.PUBLIC,name,ClassType.ANNOTATION_TYPE_DECL);
   434     }
   435     }
   435 
   436