org.openl.codegen.ICodeGenContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.openl.rules.gen Show documentation
Show all versions of org.openl.rules.gen Show documentation
OpenL Code generation project
package org.openl.codegen;
import org.openl.types.IOpenClass;
public interface ICodeGenContext {
/**
*
* @param referredType
* @return the best String representation for the type to use in the code.
*/
String addReferredType(IOpenClass referredType);
boolean addNewName(String name, String type);
String genNewName(String baseName, String type);
ICodeGenContext parentContext();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy