Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 246359
Collapse All | Expand All

(-)model/org/eclipse/jdt/core/Signature.java (-2 / +10 lines)
Lines 14-19 Link Here
14
import java.util.ArrayList;
14
import java.util.ArrayList;
15
15
16
import org.eclipse.jdt.core.compiler.CharOperation;
16
import org.eclipse.jdt.core.compiler.CharOperation;
17
17
import org.eclipse.jdt.internal.compiler.parser.ScannerHelper;
18
import org.eclipse.jdt.internal.compiler.parser.ScannerHelper;
18
import org.eclipse.jdt.internal.core.util.Util;
19
import org.eclipse.jdt.internal.core.util.Util;
19
20
Lines 272-278 Link Here
272
	public static final char C_RESOLVED		= 'L';
273
	public static final char C_RESOLVED		= 'L';
273
274
274
	/**
275
	/**
275
	 * Character constant indicating the start of an unresolved, named type in a
276
	 * Character constant indicating the start of an unresolved, named type or type variable in a
276
	 * signature. Value is <code>'Q'</code>.
277
	 * signature. Value is <code>'Q'</code>.
277
	 */
278
	 */
278
	public static final char C_UNRESOLVED	= 'Q';
279
	public static final char C_UNRESOLVED	= 'Q';
Lines 371-377 Link Here
371
372
372
373
373
	/**
374
	/**
374
	 * Kind constant for a class type signature.
375
	 * Kind constant for a class type signature or an unresolved type variable
376
	 * signature.
377
	 * 
375
	 * @see #getTypeSignatureKind(String)
378
	 * @see #getTypeSignatureKind(String)
376
	 * @since 3.0
379
	 * @since 3.0
377
	 */
380
	 */
Lines 386-391 Link Here
386
389
387
	/**
390
	/**
388
	 * Kind constant for a type variable signature.
391
	 * Kind constant for a type variable signature.
392
	 * <p>
393
	 * Note that unresolved type variable signatures are classified as
394
	 * {@link #CLASS_TYPE_SIGNATURE}.
395
	 * </p>
396
	 * 
389
	 * @see #getTypeSignatureKind(String)
397
	 * @see #getTypeSignatureKind(String)
390
	 * @since 3.0
398
	 * @since 3.0
391
	 */
399
	 */

Return to bug 246359