Revision 44207 trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.expressionevaluator/org.gvsig.expressionevaluator.lib/org.gvsig.expressionevaluator.lib.impl/src/main/java/org/gvsig/expressionevaluator/impl/function/operator/AbstractBinaryOperator.java

View differences:

AbstractBinaryOperator.java
8 8

  
9 9
public abstract class AbstractBinaryOperator extends AbstractFunction implements BinaryOperator {
10 10
    
11
    protected AbstractBinaryOperator(String group, String name, String description) {
12
        super(group, name, Range.is(2), description, " {{oper1}} " + name + " oper2 ");
11
    protected AbstractBinaryOperator(String group, String name, String description, boolean isSQLCompatible) {
12
        super(group, name, Range.is(2), description, " {{oper1}} " + name + " oper2 ", null, null, isSQLCompatible);
13 13
    }    
14 14

  
15
    protected AbstractBinaryOperator(String group, String name) {
16
        super(group, name, Range.is(2), null, " {{oper1}} " + name + " oper2 ");
15
    protected AbstractBinaryOperator(String group, String name, boolean isSQLCompatible) {
16
        this(group, name, null, isSQLCompatible);
17 17
    }
18 18

  
19 19
    @Override

Also available in: Unified diff