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 27 public final class FieldGroupInfo extends FeatureInfo { 28 29 public static final int FIELDGROUP_TYPE = ASTreeTypes.VARIABLE_DECLARATORS; 30 31 public final FieldInfo[] fields; 32 public final TypeRef type; 34 37 public FieldGroupInfo(ASTree tree, int infoType, int modifiers, TypeRef type, 38 FieldInfo[] fields, AnnotationInfo[] annotations) { 39 super(tree, infoType, null, modifiers, annotations); 40 this.type = type; 41 this.fields = fields; 42 } 43 } 44 | Popular Tags |