1 19 package org.netbeans.modules.javacore.parser; 20 21 import org.netbeans.lib.java.parser.ASTree; 22 import org.netbeans.lib.java.parser.ASTreeTypes; 23 24 29 public final class AttributeInfo extends FeatureInfo { 30 31 public static final int ATTRIBUTE_TYPE = ASTreeTypes.ANNOTATION_ATTRIBUTE_DECLARATION; 32 public final TypeRef type; 33 public final AnnotationValueInfo defaultValue; 34 35 public AttributeInfo(ASTree tree, int infoType, String name, int modifiers, 36 TypeRef type, AnnotationValueInfo defaultValue, AnnotationInfo[] annotations) 37 { 38 super(tree, infoType, name, modifiers, annotations); 39 this.type = type; 40 this.defaultValue = defaultValue; 41 } 42 43 } 44 | Popular Tags |