1 11 package org.eclipse.jdt.internal.compiler.ast; 12 13 import org.eclipse.jdt.internal.compiler.classfmt.ClassFileConstants; 14 15 17 public class JavadocImportReference extends ImportReference { 18 19 public int tagSourceStart, tagSourceEnd; 20 21 27 public JavadocImportReference(char[][] tokens, long[] sourcePositions, int tagStart, int tagEnd) { 28 super(tokens, sourcePositions, false, ClassFileConstants.AccDefault); 29 this.tagSourceStart = tagStart; 30 this.tagSourceEnd = tagEnd; 31 this.bits |= InsideJavadoc; 32 } 33 34 } 35 | Popular Tags |