Revision 32397

View differences:

branches/v2_0_0_prep/libraries/org.gvsig.arcims/src/org/gvsig/remoteclient/arcims/utils/ArcImsFeature.java
1
package org.gvsig.remoteclient.arcims.utils;
2

  
3
import org.gvsig.fmap.geom.Geometry;
4

  
5
public class ArcImsFeature {
6
	
7
	private Geometry geom;
8
	
9
	private Object[] attributes;
10
	
11
	public ArcImsFeature(Geometry geom, Object[] attributes){
12
		this.geom = geom;
13
		this.attributes = attributes;
14
	}
15
	
16
	public ArcImsFeature(Object[] attributes){
17
		this.geom = null;
18
		this.attributes = attributes;
19
	}
20

  
21
	public Object[] getAtributtes() {
22
		return attributes;
23
	}
24

  
25
	public void setAtributtes(Object[] attributes) {
26
		this.attributes = attributes;
27
	}
28

  
29
	public Geometry getGeom() {
30
		return geom;
31
	}
32

  
33
	public void setGeom(Geometry geom) {
34
		this.geom = geom;
35
	}
36

  
37
}
0 38

  

Also available in: Unified diff