1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  *
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package org.eclipse.jdt.internal.compiler.ast;
12 
13 /**
14  */
15 public class JavadocImportReference extends ImportReference {
16 
17 	public int tagSourceStart, tagSourceEnd;
18 
19 	/**
20 	 * @param tokens
21 	 * @param sourcePositions
22 	 * @param tagStart
23 	 * @param tagEnd
24 	 */
JavadocImportReference(char[][] tokens, long[] sourcePositions, int tagStart, int tagEnd)25 	public JavadocImportReference(char[][] tokens, long[] sourcePositions, int tagStart, int tagEnd) {
26 		super(tokens, sourcePositions, false, AccDefault);
27 		this.tagSourceStart = tagStart;
28 		this.tagSourceEnd = tagEnd;
29 		this.bits |= InsideJavadoc;
30 	}
31 
32 }
33