/******************************************************************************* * Copyright (c) 2000, 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.jdt.internal.compiler.env; import org.eclipse.che.ide.ext.java.jdt.internal.codeassist.ISearchRequestor; /** * The name environment provides a callback API that the compiler can use to look up types, compilation units, and packages in the * current environment. The name environment is passed to the compiler on creation. */ public interface INameEnvironment { /** * Find a type with the given compound name. Answer the binary form of the type if it is known to be consistent. Otherwise, * answer the compilation unit which defines the type or null if the type does not exist. Types in the default package are * specified as {{typeName}}. * <p/> * It is unknown whether the package containing the type actually exists. * <p/> * NOTE: This method can be used to find a member type using its internal name A$B, but the source file for A is answered if * the binary file is inconsistent. */ NameEnvironmentAnswer findType(char[][] compoundTypeName); /** * Find a type named <typeName> in the package <packageName>. Answer the binary form of the type if it is known to be * consistent. Otherwise, answer the compilation unit which defines the type or null if the type does not exist. The default * package is indicated by char[0][]. * <p/> * It is known that the package containing the type exists. * <p/> * NOTE: This method can be used to find a member type using its internal name A$B, but the source file for A is answered if * the binary file is inconsistent. */ NameEnvironmentAnswer findType(char[] typeName, char[][] packageName); /** * Answer whether packageName is the name of a known subpackage inside the package parentPackageName. A top level package is * found relative to null. The default package is always assumed to exist. * <p/> * For example: isPackage({{java}, {awt}}, {event}); isPackage(null, {java}); */ boolean isPackage(char[][] parentPackageName, char[] packageName); /** * This method cleans the environment uo. It is responsible for releasing the memory and freeing resources. Passed that point, * the name environment is no longer usable. * <p/> * A name environment can have a long life cycle, therefore it is the responsibility of the code which created it to decide * when it is a good time to clean it up. */ void cleanup(); /** * Must be used only by CompletionEngine. The progress monitor is used to be able to cancel completion operations * <p/> * Find the top-level types that are defined in the current environment and whose name starts with the given prefix. The prefix * is a qualified name separated by periods or a simple name (ex. java.util.V or V). * <p/> * The types found are passed to one of the following methods (if additional information is known about the types): * ISearchRequestor.acceptType(char[][] packageName, char[] typeName) ISearchRequestor.acceptClass(char[][] packageName, char[] * typeName, int modifiers) ISearchRequestor.acceptInterface(char[][] packageName, char[] typeName, int modifiers) * <p/> * This method can not be used to find member types... member types are found relative to their enclosing type. */ void findTypes(char[] qualifiedName, boolean findMembers, boolean camelCaseMatch, int searchFor, final ISearchRequestor requestor); /** * Find the packages that start with the given prefix. A valid prefix is a qualified name separated by periods (ex. java.util). * The packages found are passed to: ISearchRequestor.acceptPackage(char[][] packageName) */ void findPackages(char[] qualifiedName, ISearchRequestor requestor); /** * Must be used only by CompletionEngine. The progress monitor is used to be able to cancel completion operations * <p/> * Find constructor declarations that are defined in the current environment and whose name starts with the given prefix. The * prefix is a qualified name separated by periods or a simple name (ex. java.util.V or V). * <p/> * The constructors found are passed to one of the following methods: ISearchRequestor.acceptConstructor(...) */ void findConstructorDeclarations(char[] prefix, boolean camelCaseMatch, final ISearchRequestor requestor); /** * Find the top-level types that are defined * in the current environment and whose simple name matches the given name. * * The types found are passed to one of the following methods (if additional * information is known about the types): * ISearchRequestor.acceptType(char[][] packageName, char[] typeName) * ISearchRequestor.acceptClass(char[][] packageName, char[] typeName, int modifiers) * ISearchRequestor.acceptInterface(char[][] packageName, char[] typeName, int modifiers) * * This method can not be used to find member types... member * types are found relative to their enclosing type. */ void findExactTypes(char[] missingSimpleName, boolean findMembers, int searchFor, ISearchRequestor storage); void setProjectPath(String projectPath); void clearBlackList(); }