Skip to main content
summaryrefslogtreecommitdiffstats
blob: b799ee9ff5ee88be4f11f44babd88a56534eeb6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.eclipse.jdt.internal.core.builder.impl;
/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */
import org.eclipse.jdt.core.*;

/**
 * These indictments are issued when there is a T1 change to a
 * type, including change of visibility, change of gender, abstractness, etc.
 */
class TypeCollaboratorIndictment extends Indictment {
/**
 * Creates a new TypeCollaboratorIndictment.
 */
protected TypeCollaboratorIndictment(char[] name) {
	super(name);
}
	/**
	 * Returns what kind of indictment this is
	 */
	public int getKind() {
		return K_TYPE;
	}
/**
 * Returns a string representation of this class.  For debugging purposes
 * only (NON-NLS).
 */
public String toString() {
	// don't use + with char[]
	return new StringBuffer("TypeIndictment(").append(fName).append(")").toString(); //$NON-NLS-1$ //$NON-NLS-2$
}
}

Back to the top