Package org.python.core
Interface JythonInitializer
-
public interface JythonInitializer
A service for initializing Jython without explicitly callingPySystemState.initialize()
. If a file META-INF/services/org.python.core.JythonInitializer is on the classpath, Jython will instantiate the class named in that file and use it in Jython's initialization. The given class must be an implementation of this interface with a no-arg constructor.- See Also:
- Java Service Providers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
initialize(java.util.Properties preProperties, java.util.Properties postProperties, java.lang.String[] argv, java.lang.ClassLoader classLoader, ExtensiblePyObjectAdapter adapter)
Called fromPySystemState.initialize()
with the full set of initialization arguments.
-
-
-
Method Detail
-
initialize
void initialize(java.util.Properties preProperties, java.util.Properties postProperties, java.lang.String[] argv, java.lang.ClassLoader classLoader, ExtensiblePyObjectAdapter adapter)
Called fromPySystemState.initialize()
with the full set of initialization arguments. Implementations may modify or replace the given arguments, and must callPySystemState.doInitialize(java.util.Properties, java.util.Properties, java.lang.String[], java.lang.ClassLoader, org.python.core.adapter.ExtensiblePyObjectAdapter)
.- Parameters:
argv
- - The command line arguments the jython interpreter was started with, or an empty array if jython wasn't started directly from the command line.classLoader
- - The classloader to be used by sys, or null if no sys-specific classloader was specified
-
-