Klasse CodeSnippetEnvironment

java.lang.Object
org.aspectj.org.eclipse.jdt.internal.eval.CodeSnippetEnvironment
Alle implementierten Schnittstellen:
INameEnvironment, EvaluationConstants

public class CodeSnippetEnvironment extends Object implements INameEnvironment, EvaluationConstants
An environment that wraps the client's name environment. This wrapper always considers the wrapped environment then if the name is not found, it search in the code snippet support. This includes the super class org.eclipse.jdt.internal.eval.target.CodeSnippet as well as the global variable classes.
  • Konstruktordetails

  • Methodendetails

    • findType

      public NameEnvironmentAnswer findType(char[][] compoundTypeName)
      Beschreibung aus Schnittstelle kopiert: 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}}. It is unknown whether the package containing the type actually exists. 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.
      Angegeben von:
      findType in Schnittstelle INameEnvironment
      Siehe auch:
    • findType

      public NameEnvironmentAnswer findType(char[] typeName, char[][] packageName)
      Beschreibung aus Schnittstelle kopiert: INameEnvironment
      Find a type named in the package . 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][]. It is known that the package containing the type exists. 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.
      Angegeben von:
      findType in Schnittstelle INameEnvironment
      Siehe auch:
    • isPackage

      public boolean isPackage(char[][] parentPackageName, char[] packageName)
      Beschreibung aus Schnittstelle kopiert: INameEnvironment
      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. For example: isPackage({{java}, {awt}}, {event}); isPackage(null, {java});
      Angegeben von:
      isPackage in Schnittstelle INameEnvironment
      Siehe auch:
    • cleanup

      public void cleanup()
      Beschreibung aus Schnittstelle kopiert: INameEnvironment
      This method cleans the environment. It is responsible for releasing the memory and freeing resources. Passed that point, the name environment is no longer usable. 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.
      Angegeben von:
      cleanup in Schnittstelle INameEnvironment