Package com.sun.xml.rpc.processor.util
Interface ProcessorEnvironment
-
- All Superinterfaces:
ProcessorEnvironment
- All Known Implementing Classes:
ClientProcessorEnvironment,ProcessorEnvironmentBase
public interface ProcessorEnvironment extends ProcessorEnvironment
- Author:
- JAX-RPC Development Team
-
-
Field Summary
Fields Modifier and Type Field Description static intF_VERBOSEstatic intF_WARNINGS
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddGeneratedFile(GeneratedFileInfo file)Remember a generated file and its type so that it can be removed later, if appropriate.voiddeleteGeneratedFiles()Delete all the generated files made during the execution of this environment (those that have been registered with the "addGeneratedFile" method)voiderror(Localizable msg)URLClassLoadergetClassLoader()Get a URLClassLoader from using the classpathStringgetClassPath()Get the ClassPath.intgetErrorCount()intgetFlags()Get the environment flagsNamesgetNames()intgetWarningCount()voidinfo(Localizable msg)voidprintStackTrace(Throwable t)voidsetFlags(int flags)Set the environment flagsvoidshutdown()Release resources, if any.booleanverbose()Is verbose turned onvoidwarn(Localizable msg)-
Methods inherited from interface com.sun.xml.rpc.spi.tools.ProcessorEnvironment
getGeneratedFiles
-
-
-
-
Field Detail
-
F_VERBOSE
static final int F_VERBOSE
- See Also:
- Constant Field Values
-
F_WARNINGS
static final int F_WARNINGS
- See Also:
- Constant Field Values
-
-
Method Detail
-
setFlags
void setFlags(int flags)
Set the environment flags
-
getFlags
int getFlags()
Get the environment flags
-
getClassPath
String getClassPath()
Get the ClassPath.
-
verbose
boolean verbose()
Is verbose turned on
-
addGeneratedFile
void addGeneratedFile(GeneratedFileInfo file)
Remember a generated file and its type so that it can be removed later, if appropriate.
-
deleteGeneratedFiles
void deleteGeneratedFiles()
Delete all the generated files made during the execution of this environment (those that have been registered with the "addGeneratedFile" method)
-
getClassLoader
URLClassLoader getClassLoader()
Get a URLClassLoader from using the classpath
-
shutdown
void shutdown()
Release resources, if any.
-
error
void error(Localizable msg)
-
warn
void warn(Localizable msg)
-
info
void info(Localizable msg)
-
printStackTrace
void printStackTrace(Throwable t)
-
getNames
Names getNames()
-
getErrorCount
int getErrorCount()
-
getWarningCount
int getWarningCount()
-
-