Revision 3480 trunk/applications/appCatalogYNomenclatorClient/src/es/gva/cit/gazetteer/querys/Query.java

View differences:

Query.java
57 57
    private Coordinates coordinates;
58 58
    private String coordinatesFilter;
59 59
    private boolean isCoordinatesClicked;
60
    private boolean isGotoclicked;
61
    private boolean isKeepOldClicked;
60 62
       
61 63
    
62 64
    /**
......
196 198
    public void setCoordinatesClicked(boolean isCoordinatesClicked) {
197 199
        this.isCoordinatesClicked = isCoordinatesClicked;
198 200
    }
201
    /**
202
     * @return Returns the isGotoclicked.
203
     */
204
    public boolean isGotoclicked() {
205
        return isGotoclicked;
206
    }
207
    /**
208
     * @param isGotoclicked The isGotoclicked to set.
209
     */
210
    public void setGotoclicked(boolean isGotoclicked) {
211
        this.isGotoclicked = isGotoclicked;
212
    }
213
    /**
214
     * @return Returns the isKeepOldClicked.
215
     */
216
    public boolean isKeepOldClicked() {
217
        return isKeepOldClicked;
218
    }
219
    /**
220
     * @param isKeepOldClicked The isKeepOldClicked to set.
221
     */
222
    public void setKeepOldClicked(boolean isKeepOldClicked) {
223
        this.isKeepOldClicked = isKeepOldClicked;
224
    }
199 225
}

Also available in: Unified diff