/[schmitzm]/branches/1.0-gt2-2.6/src/skrueger/geotools/StyledFeaturesInterface.java
ViewVC logotype

Annotation of /branches/1.0-gt2-2.6/src/skrueger/geotools/StyledFeaturesInterface.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 244 - (hide annotations)
Wed Jul 29 09:33:33 2009 UTC (15 years, 7 months ago) by alfonx
Original Path: trunk/src/skrueger/geotools/StyledFeaturesInterface.java
File MIME type: text/plain
File size: 2251 byte(s)
* Updated all .java and .properties headers with a recent LGPL 3.0 and a link to the project webpage.
1 alfonx 244 /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3     *
4     * This file is part of the SCHMITZM library - a collection of utility
5     * classes based on Java 1.6, focussing (not only) on Java Swing
6     * and the Geotools library.
7     *
8     * The SCHMITZM project is hosted at:
9     * http://wald.intevation.org/projects/schmitzm/
10     *
11     * This program is free software; you can redistribute it and/or
12     * modify it under the terms of the GNU Lesser General Public License
13     * as published by the Free Software Foundation; either version 3
14     * of the License, or (at your option) any later version.
15     *
16     * This program is distributed in the hope that it will be useful,
17     * but WITHOUT ANY WARRANTY; without even the implied warranty of
18     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19     * GNU General Public License for more details.
20     *
21     * You should have received a copy of the GNU Lesser General Public License (license.txt)
22     * along with this program; if not, write to the Free Software
23     * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24     * or try this link: http://www.gnu.org/licenses/lgpl.html
25     *
26     * Contributors:
27     * Martin O. J. Schmitz - initial API and implementation
28     * Stefan A. Krüger - additional utility classes
29     ******************************************************************************/
30 alfonx 221 package skrueger.geotools;
31    
32 alfonx 224 import java.util.Map;
33    
34 alfonx 221 import org.geotools.data.FeatureSource;
35 alfonx 226 import org.geotools.feature.FeatureCollection;
36 alfonx 221
37 alfonx 224 import skrueger.AttributeMetaData;
38    
39 alfonx 221 /**
40 alfonx 226 * This Interface combines all styled layers that are running on
41     * {@link FeatureCollection} or {@link FeatureSource}
42     *
43 alfonx 221 * @author Stefan A. Krüger
44 alfonx 226 *
45     * @param <T>
46     * The base Type returned in the getObject() method.
47 alfonx 221 */
48 alfonx 226 public interface StyledFeaturesInterface<T> extends StyledLayerInterface<T> {
49 alfonx 224
50 alfonx 226 public abstract Map<Integer, AttributeMetaData> getAttributeMetaDataMap();
51    
52 alfonx 221 /**
53 alfonx 226 * @return The features of this layer as a {@link FeatureSource}.
54 alfonx 221 */
55     public FeatureSource getFeatureSource();
56    
57     /**
58 alfonx 226 * @return The features of this layer as a {@link FeatureCollection}.
59 alfonx 221 */
60 alfonx 226 public abstract FeatureCollection getFeatureCollection();
61 alfonx 221 }

Properties

Name Value
svn:eol-style native
svn:keywords Id
svn:mime-type text/plain

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26