Revision 42027 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.impl/src/main/java/org/gvsig/fmap/dal/feature/impl/DefaultFeatureType.java

View differences:

DefaultFeatureType.java
31 31
import java.util.Iterator;
32 32
import java.util.List;
33 33
import java.util.Set;
34
import java.util.zip.CRC32;
34 35

  
35 36
import org.cresques.cts.IProjection;
36 37

  
......
69 70
	protected boolean hasOID;
70 71
	protected boolean allowAtomaticValues;
71 72
	protected FeatureAttributeDescriptor[] pk = null;
72
	private String internalID = null;
73
	protected String internalID = null;
73 74

  
74 75
	private List srsList = null; 
75 76

  
......
99 100
		this("default");
100 101
		initialize(other, copyAttributes);
101 102
	}
102

  
103
        
103 104
	protected void initialize(DefaultFeatureType other, boolean copyAttributes) {
104 105
		this.id = other.getId();
105 106
		if (copyAttributes) {
......
118 119
		this.defaultTimeAttributeIndex = other.defaultTimeAttributeIndex;
119 120
		this.hasOID = other.hasOID;
120 121
		this.id = other.id; // XXX ???? copiar o no esto????
122
                this.internalID = other.internalID;
121 123
	}
122 124

  
123 125
	protected void intitalizeAddAttibute(DefaultFeatureAttributeDescriptor attr) {

Also available in: Unified diff