}
// and now do the connectives.
if ( constr.getConnectives() != null ) {
for ( int j = 0; j < constr.getConnectives().length; j++ ) {
final ConnectiveConstraint conn = constr.getConnectives()[ j ];
parameters = null;
if ( conn instanceof HasParameterizedOperator ) {
HasParameterizedOperator hop = (HasParameterizedOperator) conn;
parameters = hop.getParameters();
}
addFieldRestriction( buf,
conn.getConstraintValueType(),
conn.getFieldType(),
conn.getOperator(),
parameters,
conn.getValue(),
conn.getExpressionValue() );
}
}
}
}