Skip to main content
summaryrefslogtreecommitdiffstats
blob: d023e60cd276c425f76c7abd3a730baff144e252 (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
34
35
36
37
38
39
40
41
42
43
package org.eclipse.jdt.internal.core.builder.impl;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */
import org.eclipse.jdt.internal.core.builder.*;

import java.util.Vector;

public class ConvertedCompilationResult {
	PackageElement fPackageElement;
	Vector fDependencies;
	IProblemDetail[] fProblems;
	TypeStructureEntry[] fTypes;

ConvertedCompilationResult(
	PackageElement packageElement,
	Vector dependencies,
	IProblemDetail[] problems,
	TypeStructureEntry[] types) {

	fPackageElement = packageElement;
	fDependencies = dependencies;
	fProblems = problems;
	fTypes = types;
}
	Vector getDependencies() {
		return fDependencies;
	}
	PackageElement getPackageElement() {
		return fPackageElement;
	}
	IProblemDetail[] getProblems() {
		return fProblems;
	}
	TypeStructureEntry[] getTypes() {
		return fTypes;
	}
	public String toString() {
		return (fProblems.length == 0 ? ""/*nonNLS*/ : "*"/*nonNLS*/) + "ConvertedCompilationResult("/*nonNLS*/ + fPackageElement + ")"/*nonNLS*/;
	}
}

Back to the top