operators.getOperators().add( operator );
}
}
else if( scalarNames.containsValue( name )){
ComparisonOperatorsImpl operators = contents.getScalarCapabilities().getComparisonOperators();
if( operators.getOperator( name ) == null ){
OperatorImpl operator = new OperatorImpl( name );
operators.getOperators().add( operator );
}
}
else if( arithmaticNames.containsValue( name )){
ArithmeticOperatorsImpl operators = contents.getScalarCapabilities().getArithmeticOperators();
operators.setSimpleArithmetic(true);
}
else if( logicalNames.containsValue( name )){
contents.getScalarCapabilities().setLogicalOperators(true);
}
else if( "Id".equals(name)){