}
for ( Restriction r : restrictions ) {
if ( r instanceof NumberRestriction ) {
try {
NumberRestriction restriction = (NumberRestriction) r;
dt.put( restriction.getValue().toString(),
new DataRow( restriction.getRulePath(),
restriction.getRuleName(),
restriction.getOperator(),
restriction.getValueAsString() ) );
} catch ( Exception e ) {
e.printStackTrace();
}
}
}