01: /*
02: * Created on 09.11.2005 for PIROL
03: *
04: * SVN header information:
05: * $Author: javamap $
06: * $Rev: 856 $
07: * $Date: 2007-06-18 21:15:27 -0700 (Mon, 18 Jun 2007) $
08: * $Id: RolePointFeatures.java 856 2007-06-19 04:15:27Z javamap $
09: */
10: package de.fho.jump.pirol.utilities.FeatureCollection;
11:
12: /**
13: * Role for FeatureCollections that contain point geometries, only
14: *
15: * @author Ole Rahn
16: * <br>
17: * <br>FH Osnabrück - University of Applied Sciences Osnabrück,
18: * <br>Project: PIROL (2005),
19: * <br>Subproject: Daten- und Wissensmanagement
20: *
21: * @version $Rev: 856 $
22: *
23: */
24: public class RolePointFeatures extends PirolFeatureCollectionRole {
25:
26: /**
27: *
28: */
29: public RolePointFeatures() {
30: super(PirolFeatureCollectionRoleTypes.POINTLAYER);
31: }
32:
33: }
|