Revision 4440 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/drivers/SHPLayerDefinition.java

View differences:

SHPLayerDefinition.java
45 45
 *
46 46
 * $Id$
47 47
 * $Log$
48
 * Revision 1.2  2006-02-13 16:46:20  azabala
48
 * Revision 1.3  2006-03-15 12:12:22  fjp
49
 * Creaci?n desde cero de un tema POR FIN.
50
 *
51
 * Revision 1.2  2006/02/13 16:46:20  azabala
49 52
 * *** empty log message ***
50 53
 *
51 54
 * Revision 1.1  2006/02/06 19:26:23  azabala
......
100 103
	private int[] fieldLenght;
101 104

  
102 105
	private int[] decimalCount;
106
	
107
	private File shpFile;
103 108

  
104 109
	public SHPLayerDefinition(File file) {
105 110
		setFile(file);
......
110 115
	}
111 116

  
112 117
	public void setFile(File f) {
118
		shpFile = f;
113 119
		shpPath = f.getAbsolutePath();
114 120

  
115 121
		String strFichshx = f.getAbsolutePath().replaceAll("\\.shp", ".shx");
......
119 125
		dbfPath = strFichDbf.replaceAll("\\.SHP", ".DBF");
120 126

  
121 127
	}
128
	
129
	public File getFile()
130
	{
131
		return shpFile;
132
	}
122 133

  
123 134
	public String getDbfPath() {
124 135
		return dbfPath;

Also available in: Unified diff