Revision 44191 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/ExpressionEvaluatorSwingManager.java

View differences:

ExpressionEvaluatorSwingManager.java
16 16
public interface ExpressionEvaluatorSwingManager {
17 17

  
18 18
    
19
    public List<Element> createElements(Collection<SymbolTable> symbolTables);
19
//    public List<Element> createElements(Collection<SymbolTable> symbolTables);
20 20
    
21
    public List<Element> createElements(ExpressionBuilderConfig config, Collection<SymbolTable> symbolTables);
22
    
21 23
    public JExpressionBuilder createJExpressionBuilder();
22 24
    
23 25
    public JExpressionPicker createJExpressionPicker();
......
34 36
    
35 37
    public Element createElement(String name, Object... parameters);
36 38
    
37
    public GroupElement createGroupElement(String name);
39
//    public GroupElement createGroupElement(String name);
40
//    
41
//    public GroupElement createGroupElement(String name, List<Element> elements);
42
//
43
//    public FunctionElement createFunctionElement(Function function);
44
//
45
//    public ConstantElement createConstantElement(Object value);
46
//
47
//    public ConstantElement createConstantElement(Object value, String description);
48
//
49
//    public VariableElement createVariableElement(String label, String source, String name, String typeName, String description);
50

  
51
    public GroupElement createGroupElement(ExpressionBuilderConfig config, String name);
38 52
    
39
    public GroupElement createGroupElement(String name, List<Element> elements);
53
    public GroupElement createGroupElement(ExpressionBuilderConfig config, String name, List<Element> elements);
40 54

  
41
    public FunctionElement createFunctionElement(Function function);
55
    public FunctionElement createFunctionElement(ExpressionBuilderConfig config, Function function);
42 56

  
43
    public ConstantElement createConstantElement(Object value);
57
    public ConstantElement createConstantElement(ExpressionBuilderConfig config, Object value);
44 58

  
45
    public ConstantElement createConstantElement(Object value, String description);
59
    public ConstantElement createConstantElement(ExpressionBuilderConfig config, Object value, String description);
46 60

  
47
    public VariableElement createVariableElement(String label, String source, String name, String typeName, String description);
61
    public VariableElement createVariableElement(ExpressionBuilderConfig config, String label, String source, String name, String typeName, String description);
48 62

  
49 63
    public ExpressionPickerController createExpressionPickerController(JTextComponent text, JButton button);
50 64

  

Also available in: Unified diff