2 |
* Copyright (c) 2009 Martin O. J. Schmitz. |
* Copyright (c) 2009 Martin O. J. Schmitz. |
3 |
* |
* |
4 |
* This file is part of the SCHMITZM library - a collection of utility |
* 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 |
* classes based on Java 1.6, focusing (not only) on Java Swing |
6 |
* and the Geotools library. |
* and the Geotools library. |
7 |
* |
* |
8 |
* The SCHMITZM project is hosted at: |
* The SCHMITZM project is hosted at: |
29 |
******************************************************************************/ |
******************************************************************************/ |
30 |
package skrueger.geotools; |
package skrueger.geotools; |
31 |
|
|
|
import java.util.Map; |
|
|
|
|
32 |
import org.geotools.data.FeatureSource; |
import org.geotools.data.FeatureSource; |
33 |
|
import org.opengis.feature.simple.SimpleFeature; |
34 |
import skrueger.AttributeMetaData; |
import org.opengis.feature.simple.SimpleFeatureType; |
35 |
|
|
36 |
/** |
/** |
37 |
* {@link StyledLayerInterface} which contains a {@link FeatureSource} as geo object.<br> |
* {@link StyledLayerInterface} which contains a {@link FeatureSource} as geo object.<br> |
38 |
*/ |
*/ |
39 |
public interface StyledFeatureSourceInterface extends StyledFeaturesInterface<FeatureSource> { |
public interface StyledFeatureSourceInterface extends StyledFeaturesInterface<FeatureSource<SimpleFeatureType, SimpleFeature>> { |
40 |
|
|
41 |
} |
} |