Revision 44098 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/obj/LetFunction.java

View differences:

LetFunction.java
10 10
public class LetFunction extends AbstractFunction {
11 11

  
12 12
    public LetFunction() {
13
        super(Function.GROUP_OTHER, "let", Range.is(2));
13
        super(
14
            Function.GROUP_OTHER, 
15
            "LET", 
16
            Range.is(2),
17
            "Assigns the value indicated in the second argument to the variable indicated in the first argument.",
18
            "LET({{identifier_name}},value)",
19
            new String[]{
20
                "identifier_name - Name of the variable",
21
                "value - Value to assign to the variable"
22
            },
23
            "Object",
24
            false
25
        );
14 26
    }
15 27

  
16 28
    @Override

Also available in: Unified diff