source: osm/applications/editors/josm/plugins/opendata/includes/org/opengis/filter/Or.java@ 28000

Last change on this file since 28000 was 28000, checked in by donvip, 12 years ago

Import new "opendata" JOSM plugin

File size: 1.1 KB
Line 
1/*
2 * GeoTools - The Open Source Java GIS Toolkit
3 * http://geotools.org
4 *
5 * (C) 2011, Open Source Geospatial Foundation (OSGeo)
6 * (C) 2005 Open Geospatial Consortium Inc.
7 *
8 * All Rights Reserved. http://www.opengis.org/legal/
9 */
10package org.opengis.filter;
11
12// Annotations
13import org.opengis.annotation.XmlElement;
14
15
16/**
17 * {@linkplain #evaluate Evaluates} to {@code true} if any of the combined expressions evaluate to {@code true}.
18 * <p>
19 * This interface exposes no additional methods beyond those of {@link BinaryLogicOperator}.
20 * It only serves as a marker of what type of operator this is.
21 * </p>
22 * <p>
23 * You can check if the Or operation is supported using:<pre><code>
24 * scalarCapabilities.hasLogicalOperators() == true
25 * </code></pre>
26 *
27 *
28 * @source $URL: http://svn.osgeo.org/geotools/branches/2.7.x/modules/library/opengis/src/main/java/org/opengis/filter/Or.java $
29 * @version <A HREF="http://www.opengis.org/docs/02-059.pdf">Implementation specification 1.0</A>
30 * @author Chris Dillard (SYS Technologies)
31 * @since GeoAPI 2.0
32 */
33@XmlElement("Or")
34public interface Or extends BinaryLogicOperator {
35}
Note: See TracBrowser for help on using the repository browser.