org.openl.codegen.template.MatchingOpenMethodDispatcher.vm 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
private List getNotNullPropertyNames(IRulesRuntimeContext context) {
List propNames = new ArrayList();
#foreach( $tablePropertyDefinition in $tablePropertyDefinitions )
if (context.get$tool.formatAccessorName($tablePropertyDefinition.ContextVar)() != null) {
propNames.add("$tablePropertyDefinition.Definition.Name");
}
#end
return propNames;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy