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