X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Feclipse%2Fjdt%2Finternal%2Fcompiler%2Fenv%2FNameEnvironmentAnswer.java;fp=src%2Forg%2Feclipse%2Fjdt%2Finternal%2Fcompiler%2Fenv%2FNameEnvironmentAnswer.java;h=0000000000000000000000000000000000000000;hb=6f0cd02d46e011bd5599e1b7fefc6159cb811135;hp=b7ab4e66ba15018acf98e941e11fd0fdc35519b0;hpb=622d0e5a4b1b35b6918a516a79a0cc22272a919e;p=org.ibex.tool.git diff --git a/src/org/eclipse/jdt/internal/compiler/env/NameEnvironmentAnswer.java b/src/org/eclipse/jdt/internal/compiler/env/NameEnvironmentAnswer.java deleted file mode 100644 index b7ab4e6..0000000 --- a/src/org/eclipse/jdt/internal/compiler/env/NameEnvironmentAnswer.java +++ /dev/null @@ -1,79 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2000, 2004 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Common Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/cpl-v10.html - * - * Contributors: - * IBM Corporation - initial API and implementation - *******************************************************************************/ -package org.eclipse.jdt.internal.compiler.env; - -public class NameEnvironmentAnswer { - - // only one of the three can be set - IBinaryType binaryType; - ICompilationUnit compilationUnit; - ISourceType[] sourceTypes; - - public NameEnvironmentAnswer(IBinaryType binaryType) { - this.binaryType = binaryType; - } - - public NameEnvironmentAnswer(ICompilationUnit compilationUnit) { - this.compilationUnit = compilationUnit; - } - - public NameEnvironmentAnswer(ISourceType[] sourceTypes) { - this.sourceTypes = sourceTypes; - } - - /** - * Answer the resolved binary form for the type or null if the - * receiver represents a compilation unit or source type. - */ - public IBinaryType getBinaryType() { - return this.binaryType; - } - - /** - * Answer the compilation unit or null if the - * receiver represents a binary or source type. - */ - public ICompilationUnit getCompilationUnit() { - return this.compilationUnit; - } - - /** - * Answer the unresolved source forms for the type or null if the - * receiver represents a compilation unit or binary type. - * - * Multiple source forms can be answered in case the originating compilation unit did contain - * several type at once. Then the first type is guaranteed to be the requested type. - */ - public ISourceType[] getSourceTypes() { - return this.sourceTypes; - } - - /** - * Answer whether the receiver contains the resolved binary form of the type. - */ - public boolean isBinaryType() { - return this.binaryType != null; - } - - /** - * Answer whether the receiver contains the compilation unit which defines the type. - */ - public boolean isCompilationUnit() { - return this.compilationUnit != null; - } - - /** - * Answer whether the receiver contains the unresolved source form of the type. - */ - public boolean isSourceType() { - return this.sourceTypes != null; - } -}