}
final List variableList = RuleSheetParserUtil.getVariableList( getProperties().getProperty( DefaultRuleSheetListener.VARIABLES_TAG ) ); // Set the list of variables to
// be added to the
// application-data tags
for ( final Iterator it = variableList.iterator(); it.hasNext(); ) {
ruleset.addVariable( (Global) it.next() );
}
final String functions = getProperties().getProperty( DefaultRuleSheetListener.FUNCTIONS_TAG );
ruleset.addFunctions( functions );
return ruleset;