public class PythonCodeFactory extends AbstractCodeFactory
ICodeFactory.Parameter
Modifier and Type | Field and Description |
---|---|
static List<String> |
RESERVED_KEYWORDS |
LINE_DELIMITER
TRACE_MODULE_WRAPPER
Constructor and Description |
---|
PythonCodeFactory() |
Modifier and Type | Method and Description |
---|---|
String |
classInstantiation(Class<?> clazz,
String[] parameters)
Create code to instantiate a java class.
|
String |
createFinalFieldWrapper(IEnvironment environment,
String moduleVariable,
Field field)
Create code to bind a final java field to a script variable.
|
String |
createFunctionWrapper(IEnvironment environment,
String moduleVariable,
Method method)
Create code to wrap a java method call on a given script variable to the target language.
|
String |
getSaveVariableName(String variableName)
Converts a given string to a save variable name for the target language.
|
boolean |
isValidMethodName(String methodName) |
createCommentedString, createCommentedString, createFunctionCall, createKeywordHeader, getDefaultValue, getMethodNames, getPostExecutionCode, getPreExecutionCode
public String createFunctionWrapper(IEnvironment environment, String moduleVariable, Method method)
ICodeFactory
environment
- script environmentmoduleVariable
- name of variable holding the module instancemethod
- method to be wrappedpublic String getSaveVariableName(String variableName)
ICodeFactory
variableName
- variable name candidatepublic String classInstantiation(Class<?> clazz, String[] parameters)
ICodeFactory
clazz
- class to instantiateparameters
- parameters used for class instantiationpublic boolean isValidMethodName(String methodName)
public String createFinalFieldWrapper(IEnvironment environment, String moduleVariable, Field field)
ICodeFactory
environment
- script environmentmoduleVariable
- name of variable holding the module instancefield
- field to be accessed