String value) {
if ( value.startsWith( "(" ) && value.endsWith( ")" ) ) {
value = value.substring( 1,
value.lastIndexOf( ")" ) - 1 );
}
DTCellValue52 dcv = new DTCellValue52();
try {
dcv.setNumericValue( new Integer( value ) );
} catch ( NumberFormatException nfe ) {
final String message = "Priority is not an integer literal, in cell " + RuleSheetParserUtil.rc2name( row,
column );
this.conversionResult.addMessage( message,
ConversionMessageType.WARNING );