Revision 12657 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/symbols/AbstractSymbol.java

View differences:

AbstractSymbol.java
43 43
*
44 44
* $Id$
45 45
* $Log$
46
* Revision 1.5  2007-05-22 10:05:31  jaume
46
* Revision 1.6  2007-07-18 06:54:34  jaume
47
* continuing with cartographic support
48
*
49
* Revision 1.5  2007/05/22 10:05:31  jaume
47 50
* *** empty log message ***
48 51
*
49 52
* Revision 1.4  2007/03/26 14:24:13  jaume
......
76 79
 */
77 80
public abstract class AbstractSymbol implements ISymbol {
78 81
	private String desc;
79
	private int unit;
80 82

  
81 83
	private boolean isShapeVisible = true;
82
	private int referenceSystem;
83 84

  
84 85
	public final void setDescription(String desc) {
85 86
		this.desc = desc;
......
105 106
		this.isShapeVisible = isShapeVisible;
106 107
	}
107 108

  
108
	public void setUnit(int unitIndex) {
109
		this.unit = unitIndex;
110
	}
111 109

  
112
	public int getUnit() {
113
		return this.unit;
114
	}
115 110

  
116
	public int getReferenceSystem() {
117
		return this.referenceSystem;
118
	}
119 111

  
120
	public void setReferenceSystem(int system) {
121
		this.referenceSystem = system;
122

  
123
	}
124

  
125

  
126 112
}

Also available in: Unified diff