Revision 46277 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.impl/src/main/java/org/gvsig/fmap/dal/feature/impl/DefaultFeatureQuery.java

View differences:

DefaultFeatureQuery.java
127 127
    public DefaultFeatureQuery() {
128 128
        super();
129 129
        this.useSubquery = true; // true for backwards compatibility. 
130
        this.limit = -1;
130 131
    }
131 132
	
132 133
    public DefaultFeatureQuery(String storeName) {
......
493 494
    }
494 495

  
495 496
    @Override
497
    public boolean hasLimit() {
498
        return this.limit>-1;
499
    }
500

  
501
    @Override
496 502
    public boolean hasOrder() {
497 503
        return this.order != null && this.order.size() > 0;
498 504
    }

Also available in: Unified diff