Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.expressionevaluator / org.gvsig.expressionevaluator.swing / org.gvsig.expressionevaluator.swing.api / src / main / java / org / gvsig / expressionevaluator / swing / ExpressionPickerController.java @ 44263

History | View | Annotate | Download (836 Bytes)

1 43983 jjdelcerro
package org.gvsig.expressionevaluator.swing;
2
3
import org.gvsig.tools.swing.api.pickercontroller.PickerController;
4
import org.gvsig.expressionevaluator.Expression;
5
6
/**
7
 *
8
 * @author jjdelcerro
9
 */
10
public interface ExpressionPickerController
11
        extends PickerController<Expression>, ExpressionBuilderConfig {
12 44094 jjdelcerro
13 44163 jjdelcerro
    /**
14
     * Return the expression in the picker.
15
     * If a non-null value is assigned as the expression, it will return
16
     * this value updated with what the user entered.
17
     * If a null value is assigned as the expression, when the user did not
18
     * enter any value return null. When the user enter values, and the
19
     * expression is not empty, it will return a new expression.
20
     *
21
     * @return
22
     */
23
    @Override
24
    public Expression get();
25
26 44263 jjdelcerro
    public Expression getWithOutHistory();
27 44163 jjdelcerro
28 43983 jjdelcerro
}