public interface INameEnvironment
In JLS diction a name environment implements a "host system", with these responsibilities:
Note: This internal interface has been implemented illegally by the org.apache.jasper.glassfish bundle from Orbit, see bug 500211. Avoid changing the API or supply default methods to avoid breaking the Eclipse Help system.
| Modifier and Type | Method and Description |
|---|---|
void |
cleanup()
This method cleans the environment.
|
NameEnvironmentAnswer |
findType(char[][] compoundTypeName)
Find a type with the given compound name.
|
NameEnvironmentAnswer |
findType(char[] typeName,
char[][] packageName)
Find a type named
|
boolean |
isPackage(char[][] parentPackageName,
char[] packageName)
Answer whether packageName is the name of a known subpackage inside
the package parentPackageName.
|
NameEnvironmentAnswer findType(char[][] compoundTypeName)
NameEnvironmentAnswer findType(char[] typeName, char[][] packageName)
boolean isPackage(char[][] parentPackageName,
char[] packageName)
void cleanup()