Revision 26363 branches/v10/libraries/libGeocoding/src/org/gvsig/normalization/patterns/Datevalue.java

View differences:

Datevalue.java
44 44
 */
45 45
public class Datevalue implements IStorable {
46 46

  
47
	// --------------------------/
48
	// - Class/Member Variables -/
49
	// --------------------------/
50

  
51 47
	/**
52 48
	 * format of the date
53 49
	 */
54 50
	private String _datevalueformat;
55 51

  
56
	// ----------------/
57
	// - Constructors -/
58
	// ----------------/
59

  
52
	/**
53
	 * Constructor
54
	 */
60 55
	public Datevalue() {
61 56
		super();
62 57
	}
63 58

  
64
	// -----------/
65
	// - Methods -/
66
	// -----------/
67

  
68 59
	/**
69 60
	 * Returns the value of field 'datevalueformat'.
70 61
	 * 
......
92 83
	public void getstate(IStorage state) {
93 84
		state.setTheClass(this);
94 85
		state.put("datevalueformat", this._datevalueformat);
95

  
96 86
	}
97 87

  
98 88
	/**
......
102 92
	 */
103 93
	public void setstate(IStorage state) {
104 94
		this._datevalueformat = (String) state.get("datevalueformat");
105

  
106 95
	}
107 96

  
108 97
}

Also available in: Unified diff