Revision 45739 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.impl/src/main/java/org/gvsig/expressionevaluator/impl/symboltable/FeatureSymbolTableImpl.java

View differences:

FeatureSymbolTableImpl.java
47 47
 */
48 48
@SuppressWarnings("UseSpecificCatch")
49 49
public class FeatureSymbolTableImpl extends AbstractSymbolTable implements FeatureSymbolTable {
50
  private static final String DAL_SYMBOL_TABLE_FEATURE = "DAL.SymbolTable.Feature";
50
  private static final String DAL_SYMBOL_TABLE_FEATURE = "DALSymbolTableFeature";
51 51

  
52 52
  private final Function current_row;
53 53
  private Feature feature;
......
57 57

  
58 58
  @SuppressWarnings("OverridableMethodCallInConstructor")
59 59
  public FeatureSymbolTableImpl() {
60
    super(DAL_SYMBOL_TABLE_FEATURE);
60
    this(DAL_SYMBOL_TABLE_FEATURE);
61
  }
62
  
63
  public FeatureSymbolTableImpl(String name) {
64
    super(name);
61 65
    this.current_row = new AbstractFunction(
62 66
            DALFunctions.GROUP_DATA_ACCESS,
63 67
            FUNCTION_CURRENT_ROW,

Also available in: Unified diff