janino.net
A B C D E F G H I J K L M N O P Q R S T U V W Z

S

saveLocalVariables() - Method in class org.codehaus.janino.CodeContext
Remembers the current size of the local variables array.
sbsgs - Variable in class org.codehaus.janino.Java.SwitchStatement
The list of 'switch block statement groups' that pose the body of the SWITCH statement.
Scanner - Class in org.codehaus.janino
Splits up a character stream into tokens and returns them as String objects.
Scanner(String) - Constructor for class org.codehaus.janino.Scanner
Deprecated. // SUPPRESS CHECKSTYLE MissingDeprecated
Scanner(String, String) - Constructor for class org.codehaus.janino.Scanner
Deprecated. // SUPPRESS CHECKSTYLE MissingDeprecated
Scanner(File) - Constructor for class org.codehaus.janino.Scanner
Deprecated. // SUPPRESS CHECKSTYLE MissingDeprecated
Scanner(File, String) - Constructor for class org.codehaus.janino.Scanner
Deprecated. // SUPPRESS CHECKSTYLE MissingDeprecated
Scanner(String, InputStream) - Constructor for class org.codehaus.janino.Scanner
Set up a scanner that reads tokens from the given InputStream in the platform default encoding.
Scanner(String, InputStream, String) - Constructor for class org.codehaus.janino.Scanner
Set up a scanner that reads tokens from the given InputStream with the given optionalEncoding (null means platform default encoding).
Scanner(String, Reader) - Constructor for class org.codehaus.janino.Scanner
Set up a scanner that reads tokens from the given Reader.
Scanner(String, Reader, short, short) - Constructor for class org.codehaus.janino.Scanner
Creates a Scanner that counts lines and columns from non-default initial values.
Scanner.Token - Class in org.codehaus.janino
Representation of a Java™ token.
ScriptEvaluator - Class in org.codehaus.commons.compiler.jdk
To set up a ScriptEvaluator object, proceed as described for IScriptEvaluator.
ScriptEvaluator(String) - Constructor for class org.codehaus.commons.compiler.jdk.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.cook(script);
ScriptEvaluator(String, Class<?>) - Constructor for class org.codehaus.commons.compiler.jdk.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setReturnType(returnType); se.cook(script);
ScriptEvaluator(String, Class<?>, String[], Class<?>[]) - Constructor for class org.codehaus.commons.compiler.jdk.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setReturnType(returnType); se.setParameters(parameterNames, parameterTypes); se.cook(script);
ScriptEvaluator(String, Class<?>, String[], Class<?>[], Class<?>[]) - Constructor for class org.codehaus.commons.compiler.jdk.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setReturnType(returnType); se.setParameters(parameterNames, parameterTypes); se.setThrownExceptions(thrownExceptions); se.cook(script);
ScriptEvaluator(String, InputStream, Class<?>, String[], Class<?>[], Class<?>[], ClassLoader) - Constructor for class org.codehaus.commons.compiler.jdk.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setReturnType(returnType); se.setParameters(parameterNames, parameterTypes); se.setThrownExceptions(thrownExceptions); se.setParentClassLoader(optionalParentClassLoader); se.cook(optionalFileName, is);
ScriptEvaluator(String, Reader, Class<?>, String[], Class<?>[], Class<?>[], ClassLoader) - Constructor for class org.codehaus.commons.compiler.jdk.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setReturnType(returnType); se.setParameters(parameterNames, parameterTypes); se.setThrownExceptions(thrownExceptions); se.setParentClassLoader(optionalParentClassLoader); se.cook(reader);
ScriptEvaluator() - Constructor for class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
ScriptEvaluator - Class in org.codehaus.janino
A number of "convenience constructors" exist that execute the setup steps instantly.
ScriptEvaluator(String) - Constructor for class org.codehaus.janino.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.cook(script);
ScriptEvaluator(String, Class) - Constructor for class org.codehaus.janino.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setReturnType(returnType); se.cook(script);
ScriptEvaluator(String, Class, String[], Class[]) - Constructor for class org.codehaus.janino.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setReturnType(returnType); se.setParameters(parameterNames, parameterTypes); se.cook(script);
ScriptEvaluator(String, Class, String[], Class[], Class[]) - Constructor for class org.codehaus.janino.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setReturnType(returnType); se.setParameters(parameterNames, parameterTypes); se.setThrownExceptions(thrownExceptions); se.cook(script);
ScriptEvaluator(String, InputStream, Class, String[], Class[], Class[], ClassLoader) - Constructor for class org.codehaus.janino.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setReturnType(returnType); se.setParameters(parameterNames, parameterTypes); se.setThrownExceptions(thrownExceptions); se.setParentClassLoader(optionalParentClassLoader); se.cook(optionalFileName, is);
ScriptEvaluator(String, Reader, Class, String[], Class[], Class[], ClassLoader) - Constructor for class org.codehaus.janino.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setReturnType(returnType); se.setParameters(parameterNames, parameterTypes); se.setThrownExceptions(thrownExceptions); se.setParentClassLoader(optionalParentClassLoader); se.cook(reader);
ScriptEvaluator(Scanner, Class, String[], Class[], Class[], ClassLoader) - Constructor for class org.codehaus.janino.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setReturnType(returnType); se.setParameters(parameterNames, parameterTypes); se.setThrownExceptions(thrownExceptions); se.setParentClassLoader(optionalParentClassLoader); se.cook(scanner);
ScriptEvaluator(Scanner, Class, Class[], Class, String[], Class[], Class[], ClassLoader) - Constructor for class org.codehaus.janino.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setExtendedType(optionalExtendedType); se.setImplementedTypes(implementedTypes); se.setReturnType(returnType); se.setParameters(parameterNames, parameterTypes); se.setThrownExceptions(thrownExceptions); se.setParentClassLoader(optionalParentClassLoader); se.cook(scanner);
ScriptEvaluator(Scanner, String, Class, Class[], boolean, Class, String, String[], Class[], Class[], ClassLoader) - Constructor for class org.codehaus.janino.ScriptEvaluator
Equivalent to ScriptEvaluator se = new ScriptEvaluator(); se.setClassName(className); se.setExtendedType(optionalExtendedType); se.setImplementedTypes(implementedTypes); se.setStaticMethod(staticMethod); se.setReturnType(returnType); se.setMethodName(methodName); se.setParameters(parameterNames, parameterTypes); se.setThrownExceptions(thrownExceptions); se.setParentClassLoader(optionalParentClassLoader); se.cook(scanner);
ScriptEvaluator() - Constructor for class org.codehaus.janino.ScriptEvaluator
Constructs a script evaluator with all the default settings (return type void
set() - Method in class org.codehaus.janino.CodeContext.Offset
Sets this "Offset" to the offset of the current inserter; inserts this "Offset" before the current inserter.
set(T) - Method in class org.codehaus.janino.util.iterator.FilterListIterator
Calls FilterListIterator.delegate.
setArgsNeedAdjust(boolean) - Method in class org.codehaus.janino.IClass.IInvocable
TODO
setCharacterEncoding(String) - Method in class org.codehaus.janino.JavaSourceIClassLoader
 
setClassName(String) - Method in interface org.codehaus.commons.compiler.IClassBodyEvaluator
Set the name of the generated class.
setClassName(String) - Method in class org.codehaus.commons.compiler.jdk.ClassBodyEvaluator
 
setClassName(String) - Method in class org.codehaus.janino.ClassBodyEvaluator
 
setCompileErrorHandler(ErrorHandler) - Method in interface org.codehaus.commons.compiler.ICookable
By default, CompileExceptions are thrown on compile errors, but an application my install its own ErrorHandler.
setCompileErrorHandler(ErrorHandler) - Method in class org.codehaus.commons.compiler.jdk.SimpleCompiler
 
setCompileErrorHandler(ErrorHandler) - Method in class org.codehaus.janino.Compiler
Install a custom ErrorHandler.
setCompileErrorHandler(ErrorHandler) - Method in class org.codehaus.janino.JavaSourceClassLoader
 
setCompileErrorHandler(ErrorHandler) - Method in class org.codehaus.janino.JavaSourceIClassLoader
 
setCompileErrorHandler(ErrorHandler) - Method in class org.codehaus.janino.SimpleCompiler
 
setCompileErrorHandler(ErrorHandler) - Method in class org.codehaus.janino.UnitCompiler
By default, CompileExceptions are thrown on compile errors, but an application my install its own (thread-local) ErrorHandler.
setCompilerOptions(String[]) - Method in class org.codehaus.commons.compiler.jdk.JavaSourceClassLoader
Notice: Don't use the '-g' options - these are controlled through JavaSourceClassLoader.setDebuggingInfo(boolean, boolean, boolean).
setDebuggingInfo(boolean, boolean, boolean) - Method in class org.codehaus.commons.compiler.AbstractJavaSourceClassLoader
 
setDebuggingInfo(boolean, boolean, boolean) - Method in class org.codehaus.commons.compiler.jdk.JavaSourceClassLoader
 
setDebuggingInfo(boolean, boolean, boolean) - Method in class org.codehaus.janino.JavaSourceClassLoader
 
setDebuggingInformation(boolean, boolean, boolean) - Method in interface org.codehaus.commons.compiler.ICookable
Determines what kind of debugging information is included in the generates classes.
setDebuggingInformation(boolean, boolean, boolean) - Method in class org.codehaus.commons.compiler.jdk.SimpleCompiler
 
setDebuggingInformation(boolean, boolean, boolean) - Method in class org.codehaus.janino.SimpleCompiler
 
setDeclaringCompilationUnit(Java.CompilationUnit) - Method in class org.codehaus.janino.Java.PackageMemberClassDeclaration
 
setDeclaringCompilationUnit(Java.CompilationUnit) - Method in class org.codehaus.janino.Java.PackageMemberInterfaceDeclaration
 
setDeclaringCompilationUnit(Java.CompilationUnit) - Method in interface org.codehaus.janino.Java.PackageMemberTypeDeclaration
Sets the Java.CompilationUnit in which this top-level type is declared.
setDeclaringType(Java.TypeDeclaration) - Method in class org.codehaus.janino.Java.AbstractTypeBodyDeclaration
 
setDeclaringType(Java.TypeDeclaration) - Method in class org.codehaus.janino.Java.FieldDeclaration
 
setDeclaringType(Java.TypeDeclaration) - Method in class org.codehaus.janino.Java.FunctionDeclarator
 
setDeclaringType(Java.TypeDeclaration) - Method in class org.codehaus.janino.Java.MemberClassDeclaration
 
setDeclaringType(Java.TypeDeclaration) - Method in class org.codehaus.janino.Java.MemberInterfaceDeclaration
 
setDeclaringType(Java.TypeDeclaration) - Method in interface org.codehaus.janino.Java.TypeBodyDeclaration
Sets the type declaration that this declaration belongs to.
setDefaultImports(String[]) - Method in interface org.codehaus.commons.compiler.IClassBodyEvaluator
"Default imports" add to the system import "java.lang", i.e. the evaluator may refer to classes imported by default imports without having to explicitly declare IMPORT statements.
setDefaultImports(String[]) - Method in class org.codehaus.commons.compiler.jdk.ClassBodyEvaluator
 
setDefaultImports(String[]) - Method in class org.codehaus.janino.ClassBodyEvaluator
 
setEnclosingBlockStatement(Java.BlockStatement) - Method in class org.codehaus.janino.Java.Rvalue
Sets enclosing block statement for this object and all subordinate Java.Rvalue objects.
setEnclosingScope(Java.Scope) - Method in class org.codehaus.janino.Java.AbstractTypeBodyDeclaration
Forward-implements Java.BlockStatement.setEnclosingScope(Java.Scope).
setEnclosingScope(Java.Scope) - Method in class org.codehaus.janino.Java.AbstractTypeDeclaration
Sets the enclosing scope of this Java.TypeDeclaration.
setEnclosingScope(Java.Scope) - Method in interface org.codehaus.janino.Java.Annotation
Sets the enclosing scope for this annotation.
setEnclosingScope(Java.Scope) - Method in class org.codehaus.janino.Java.ArrayType
 
setEnclosingScope(Java.Scope) - Method in interface org.codehaus.janino.Java.BlockStatement
Sets the enclosing scope of this Java.BlockStatement.
setEnclosingScope(Java.Scope) - Method in class org.codehaus.janino.Java.ConstructorInvocation
 
setEnclosingScope(Java.Scope) - Method in class org.codehaus.janino.Java.MarkerAnnotation
 
setEnclosingScope(Java.Scope) - Method in class org.codehaus.janino.Java.NormalAnnotation
 
setEnclosingScope(Java.Scope) - Method in class org.codehaus.janino.Java.SingleElementAnnotation
 
setEnclosingScope(Java.Scope) - Method in class org.codehaus.janino.Java.Statement
 
setEnclosingScope(Java.Scope) - Method in class org.codehaus.janino.Java.Type
Sets the enclosing scope for this object and all subordinate Java.Type objects.
setEnclosingTryStatement(Java.TryStatement) - Method in class org.codehaus.janino.Java.CatchClause
Links this CATCH clause to the enclosing TRY statement.
setEnd(CodeContext.Offset) - Method in class org.codehaus.janino.Java.LocalVariableSlot
 
setExpectGreater(boolean) - Method in class org.codehaus.janino.Scanner
Sets or resets the 'expect greater' mode.
setExpressionType(Class) - Method in interface org.codehaus.commons.compiler.IExpressionEvaluator
Define the type of the expression.
setExpressionType(Class) - Method in class org.codehaus.commons.compiler.jdk.ExpressionEvaluator
 
setExpressionType(Class) - Method in class org.codehaus.janino.ExpressionEvaluator
 
setExpressionTypes(Class[]) - Method in interface org.codehaus.commons.compiler.IExpressionEvaluator
Same as IExpressionEvaluator.setExpressionType(Class), but for multiple expressions.
setExpressionTypes(Class[]) - Method in class org.codehaus.commons.compiler.jdk.ExpressionEvaluator
 
setExpressionTypes(Class[]) - Method in class org.codehaus.janino.ExpressionEvaluator
 
setExtendedClass(Class) - Method in interface org.codehaus.commons.compiler.IClassBodyEvaluator
Set a particular superclass that the generated class will extend.
setExtendedClass(Class) - Method in class org.codehaus.commons.compiler.jdk.ClassBodyEvaluator
 
setExtendedClass(Class) - Method in class org.codehaus.janino.ClassBodyEvaluator
 
setExtendedType(Class) - Method in interface org.codehaus.commons.compiler.IClassBodyEvaluator
Deprecated. Use IClassBodyEvaluator.setExtendedClass(Class) instead.
setExtendedType(Class) - Method in class org.codehaus.commons.compiler.jdk.ClassBodyEvaluator
Deprecated.  
setExtendedType(Class) - Method in class org.codehaus.janino.ClassBodyEvaluator
Deprecated.  
setImplementedInterfaces(Class[]) - Method in interface org.codehaus.commons.compiler.IClassBodyEvaluator
Set a particular set of interfaces that the generated class will implement.
setImplementedInterfaces(Class[]) - Method in class org.codehaus.commons.compiler.jdk.ClassBodyEvaluator
 
setImplementedInterfaces(Class[]) - Method in class org.codehaus.janino.ClassBodyEvaluator
 
setImplementedTypes(Class[]) - Method in interface org.codehaus.commons.compiler.IClassBodyEvaluator
Deprecated. Use IClassBodyEvaluator.setImplementedInterfaces(Class[]) instead.
setImplementedTypes(Class[]) - Method in class org.codehaus.commons.compiler.jdk.ClassBodyEvaluator
Deprecated.  
setImplementedTypes(Class[]) - Method in class org.codehaus.janino.ClassBodyEvaluator
Deprecated.  
setLastModified(long) - Method in class org.codehaus.janino.util.resource.MapResourceFinder
 
setMethodName(String) - Method in interface org.codehaus.commons.compiler.IScriptEvaluator
Define the name of the generated method.
setMethodName(String) - Method in class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
setMethodName(String) - Method in class org.codehaus.janino.ScriptEvaluator
 
setMethodNames(String[]) - Method in interface org.codehaus.commons.compiler.IScriptEvaluator
Same as IScriptEvaluator.setMethodName(String), but for multiple scripts.
setMethodNames(String[]) - Method in class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
setMethodNames(String[]) - Method in class org.codehaus.janino.ScriptEvaluator
 
setName(String) - Method in class org.codehaus.janino.Java.LocalVariableSlot
 
setOverrideMethod(boolean) - Method in interface org.codehaus.commons.compiler.IScriptEvaluator
Defines whether the generated method overrides a methods declared in a supertype.
setOverrideMethod(boolean[]) - Method in interface org.codehaus.commons.compiler.IScriptEvaluator
Same as IScriptEvaluator.setOverrideMethod(boolean), but for multiple scripts.
setOverrideMethod(boolean) - Method in class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
setOverrideMethod(boolean[]) - Method in class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
setOverrideMethod(boolean) - Method in class org.codehaus.janino.ScriptEvaluator
 
setOverrideMethod(boolean[]) - Method in class org.codehaus.janino.ScriptEvaluator
 
setPackageDeclaration(Java.PackageDeclaration) - Method in class org.codehaus.janino.Java.CompilationUnit
Sets the package declaration of this CU.
setParameters(String[], Class[]) - Method in interface org.codehaus.commons.compiler.IScriptEvaluator
Define the names and types of the parameters of the generated method.
setParameters(String[][], Class[][]) - Method in interface org.codehaus.commons.compiler.IScriptEvaluator
Same as IScriptEvaluator.setParameters(String[], Class[]), but for multiple scripts.
setParameters(String[], Class[]) - Method in class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
setParameters(String[][], Class[][]) - Method in class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
setParameters(String[], Class[]) - Method in class org.codehaus.janino.ScriptEvaluator
 
setParameters(String[][], Class[][]) - Method in class org.codehaus.janino.ScriptEvaluator
 
setParentClassLoader(ClassLoader) - Method in interface org.codehaus.commons.compiler.ICookable
The "parent class loader" is used to load referenced classes.
setParentClassLoader(ClassLoader) - Method in class org.codehaus.commons.compiler.jdk.SimpleCompiler
 
setParentClassLoader(ClassLoader, Class<?>[]) - Method in class org.codehaus.commons.compiler.jdk.SimpleCompiler
Deprecated. Auxiliary classes never really worked... don't use them.
setParentClassLoader(ClassLoader) - Method in class org.codehaus.janino.SimpleCompiler
 
setProtectionDomainFactory(AbstractJavaSourceClassLoader.ProtectionDomainFactory) - Method in class org.codehaus.commons.compiler.AbstractJavaSourceClassLoader
 
setReturnType(Class) - Method in interface org.codehaus.commons.compiler.IExpressionEvaluator
Deprecated. Must not be used on an IExpressionEvaluator; use IExpressionEvaluator.setExpressionType(Class) instead.
setReturnType(Class) - Method in interface org.codehaus.commons.compiler.IScriptEvaluator
Defines the return type of the generated method.
setReturnType(Class) - Method in class org.codehaus.commons.compiler.jdk.ExpressionEvaluator
Deprecated.  
setReturnType(Class) - Method in class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
setReturnType(Class) - Method in class org.codehaus.janino.ExpressionEvaluator
Deprecated. ExpressionEvaluator.setExpressionType(Class) should be called instead.
setReturnType(Class) - Method in class org.codehaus.janino.ScriptEvaluator
Defines the return types of the generated methods.
setReturnTypes(Class[]) - Method in interface org.codehaus.commons.compiler.IExpressionEvaluator
Deprecated. Must not be used on an IExpressionEvaluator; use IExpressionEvaluator.setExpressionTypes(Class[]) instead.
setReturnTypes(Class[]) - Method in interface org.codehaus.commons.compiler.IScriptEvaluator
Defines the return types of the generated methods.
setReturnTypes(Class[]) - Method in class org.codehaus.commons.compiler.jdk.ExpressionEvaluator
Deprecated.  
setReturnTypes(Class[]) - Method in class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
setReturnTypes(Class[]) - Method in class org.codehaus.janino.ExpressionEvaluator
Deprecated. ExpressionEvaluator.setExpressionTypes(Class[]) should be called instead.
setReturnTypes(Class[]) - Method in class org.codehaus.janino.ScriptEvaluator
Defines the return types of the generated methods.
setSlot(Java.LocalVariableSlot) - Method in class org.codehaus.janino.Java.LocalVariable
 
setSlotIndex(short) - Method in class org.codehaus.janino.Java.LocalVariableSlot
 
setSourceFileCharacterEncoding(String) - Method in class org.codehaus.commons.compiler.AbstractJavaSourceClassLoader
 
setSourceFileCharacterEncoding(String) - Method in class org.codehaus.commons.compiler.jdk.JavaSourceClassLoader
 
setSourceFileCharacterEncoding(String) - Method in class org.codehaus.janino.JavaSourceClassLoader
 
setSourceFinder(ResourceFinder) - Method in class org.codehaus.janino.JavaSourceIClassLoader
 
setSourcePath(File[]) - Method in class org.codehaus.commons.compiler.AbstractJavaSourceClassLoader
 
setSourcePath(File[]) - Method in class org.codehaus.commons.compiler.jdk.JavaSourceClassLoader
 
setSourcePath(File[]) - Method in class org.codehaus.janino.JavaSourceClassLoader
 
setStart(CodeContext.Offset) - Method in class org.codehaus.janino.Java.LocalVariableSlot
 
setStaticMethod(boolean) - Method in interface org.codehaus.commons.compiler.IScriptEvaluator
Defines whether the generated method should be STATIC or not.
setStaticMethod(boolean[]) - Method in interface org.codehaus.commons.compiler.IScriptEvaluator
Same as IScriptEvaluator.setStaticMethod(boolean), but for multiple scripts.
setStaticMethod(boolean) - Method in class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
setStaticMethod(boolean[]) - Method in class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
setStaticMethod(boolean) - Method in class org.codehaus.janino.ScriptEvaluator
 
setStaticMethod(boolean[]) - Method in class org.codehaus.janino.ScriptEvaluator
 
setThrownExceptions(Class[]) - Method in interface org.codehaus.commons.compiler.IScriptEvaluator
Define the exceptions that the generated method may throw.
setThrownExceptions(Class[][]) - Method in interface org.codehaus.commons.compiler.IScriptEvaluator
Same as IScriptEvaluator.setThrownExceptions(Class[]), but for multiple scripts.
setThrownExceptions(Class[]) - Method in class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
setThrownExceptions(Class[][]) - Method in class org.codehaus.commons.compiler.jdk.ScriptEvaluator
 
setThrownExceptions(Class[]) - Method in class org.codehaus.janino.ScriptEvaluator
 
setThrownExceptions(Class[][]) - Method in class org.codehaus.janino.ScriptEvaluator
 
setVersion(short, short) - Method in class org.codehaus.janino.util.ClassFile
Sets the major and minor class file version numbers (JVMS 4.1).
setWarningHandler(WarningHandler) - Method in interface org.codehaus.commons.compiler.ICookable
By default, warnings are discarded, but an application my install a custom WarningHandler.
setWarningHandler(WarningHandler) - Method in class org.codehaus.commons.compiler.jdk.SimpleCompiler
 
setWarningHandler(WarningHandler) - Method in class org.codehaus.janino.Compiler
By default, warnings are discarded, but an application my install a custom Compiler.SimpleWarningHandler.
setWarningHandler(WarningHandler) - Method in class org.codehaus.janino.JavaSourceClassLoader
 
setWarningHandler(WarningHandler) - Method in class org.codehaus.janino.JavaSourceIClassLoader
 
setWarningHandler(WarningHandler) - Method in class org.codehaus.janino.Parser
By default, warnings are discarded, but an application my install a WarningHandler.
setWarningHandler(WarningHandler) - Method in class org.codehaus.janino.Scanner
By default, warnings are discarded, but an application my install a WarningHandler.
setWarningHandler(WarningHandler) - Method in class org.codehaus.janino.SimpleCompiler
 
setWarningHandler(WarningHandler) - Method in class org.codehaus.janino.UnitCompiler
By default, warnings are discarded, but an application my install a custom WarningHandler.
SHORT - Static variable in class org.codehaus.janino.Descriptor
The field descriptor for the primitive type SHORT.
SHORT - Static variable in class org.codehaus.janino.IClass
The IClass object for the primitive type SHORT.
SHORT - Static variable in class org.codehaus.janino.Java.BasicType
Value representing the SHORT type.
shortToString(short) - Static method in class org.codehaus.janino.Mod
Composes and returns a string that maps the given modifier as follows: Value zero is mapped to "".
SimpleCompiler - Class in org.codehaus.commons.compiler.jdk
The JDK-based implementation of ISimpleCompiler.
SimpleCompiler() - Constructor for class org.codehaus.commons.compiler.jdk.SimpleCompiler
 
SimpleCompiler - Class in org.codehaus.janino
To set up a SimpleCompiler object, proceed as described for ISimpleCompiler.
SimpleCompiler(String, Reader) - Constructor for class org.codehaus.janino.SimpleCompiler
Equivalent to SimpleCompiler sc = new SimpleCompiler(); sc.cook(optionalFileName, in);
SimpleCompiler(String, InputStream) - Constructor for class org.codehaus.janino.SimpleCompiler
Equivalent to SimpleCompiler sc = new SimpleCompiler(); sc.cook(optionalFileName, is);
SimpleCompiler(String) - Constructor for class org.codehaus.janino.SimpleCompiler
Equivalent to SimpleCompiler sc = new SimpleCompiler(); sc.cook(fileName);
SimpleCompiler(Scanner, ClassLoader) - Constructor for class org.codehaus.janino.SimpleCompiler
Equivalent to SimpleCompiler sc = new SimpleCompiler(); sc.setParentClassLoader(optionalParentClassLoader); sc.cook(scanner);
SimpleCompiler() - Constructor for class org.codehaus.janino.SimpleCompiler
 
size(String) - Static method in class org.codehaus.janino.Descriptor
 
size() - Method in class org.codehaus.janino.util.iterator.IteratorCollection
 
skip(long) - Method in class org.codehaus.commons.io.MultiReader
 
slot - Variable in class org.codehaus.janino.Java.LocalVariable
The slot reserved for this local variable.
startPC - Variable in class org.codehaus.janino.util.ClassFile.LineNumberTableAttribute.Entry
The fields of the entries in the line_number_table, as described in JVMS7 4.7.12.
startPC - Variable in class org.codehaus.janino.util.ClassFile.LocalVariableTableAttribute.Entry
The fields of the entries in the local_variable_table, as described in JVMS7 4.7.13.
statements - Variable in class org.codehaus.janino.Java.Block
The list of statements that comprise the body of the block.
statiC - Variable in class org.codehaus.janino.Java.AbstractTypeBodyDeclaration
Whether this declaration has the STATIC modifier
STATIC - Static variable in class org.codehaus.janino.Mod
This flag is set on class or interface initialization methods, STATIC class fields, all interface fields, STATIC methods, and STATIC nested classes.
store(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.AttributeInfo
Writes this attribute to a DataOutputStream, in the format described in JVMS7 4.7.
store(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.ConstantClassInfo
 
store(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.ConstantFieldrefInfo
 
store(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.ConstantInterfaceMethodrefInfo
 
store(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.ConstantMethodrefInfo
 
store(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.ConstantNameAndTypeInfo
 
store(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.ConstantPoolInfo
Stores this CP entry into the given DataOutputStream.
store(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.ConstantUtf8Info
 
store(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.FieldInfo
Writes this object to a DataOutputStream, in the format described inJVMS7 4.5.
store(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.MethodInfo
Writes this object to a DataOutputStream, in the format described inJVMS7 4.6.
store(OutputStream) - Method in class org.codehaus.janino.util.ClassFile
Write ClassFile to an OutputStream, in "class file" format.
storeBody(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.AttributeInfo
Writes the body of this attribute in an attribute-type dependent way; see JVMS7 4.7.2 and following.
storeBody(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.ConstantValueAttribute
 
storeBody(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.DeprecatedAttribute
 
storeBody(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.ExceptionsAttribute
 
storeBody(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.InnerClassesAttribute
 
storeBody(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.LineNumberTableAttribute
 
storeBody(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.LocalVariableTableAttribute
 
storeBody(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.SourceFileAttribute
 
storeBody(DataOutputStream) - Method in class org.codehaus.janino.util.ClassFile.SyntheticAttribute
 
storeClassFile(ClassFile, File) - Method in class org.codehaus.janino.Compiler
Store the byte code of this ClassFile in the file system.
storeCodeAttributeBody(DataOutputStream, short, short) - Method in class org.codehaus.janino.CodeContext
 
storeLocalVariableTable(DataOutputStream, short) - Method in class org.codehaus.janino.CodeContext
 
STRICTFP - Static variable in class org.codehaus.janino.Mod
This flag is set on STRICTFP methods, and is mutually exclusive with Mod.ABSTRACT.
STRING_LITERAL - Static variable in class org.codehaus.janino.Scanner.Token
The token represents a string literal; its Scanner.Token.value is the text of the string literal exactly as it appears in the source code (including the double quotes around it).
StringPattern - Class in org.codehaus.janino.util
Implementation of a UNIX shell-like string pattern algorithm.
StringPattern(int, String) - Constructor for class org.codehaus.janino.util.StringPattern
 
StringPattern(String) - Constructor for class org.codehaus.janino.util.StringPattern
 
SUPER - Static variable in class org.codehaus.janino.Mod
This flag is always set on classes, and never set on any other element.
superclass - Variable in class org.codehaus.janino.util.ClassFile
The constant pool index of the ClassFile.ConstantClassInfo that describes the superclass of THIS class.
SYNCHRONIZED - Static variable in class org.codehaus.janino.Mod
This flag is set on SYNCHRONIZED methods.
SYNTHETIC - Static variable in class org.codehaus.janino.Mod
This flag is set on classes, methods and fields that were generated by the compiler and do not appear in the source code.
SYSTEM_PROPERTY_SOURCE_DEBUGGING_DIR - Static variable in interface org.codehaus.commons.compiler.ICookable
Value 'org.codehaus.janino.source_debugging.dir'.
SYSTEM_PROPERTY_SOURCE_DEBUGGING_ENABLE - Static variable in interface org.codehaus.commons.compiler.ICookable
Value 'org.codehaus.janino.source_debugging.enable'.

janino.net
A B C D E F G H I J K L M N O P Q R S T U V W Z