Subversion Repositories SmartDukaan

Rev

Rev 1061 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1061 Rev 2170
Line 25... Line 25...
25
	/**
25
	/**
26
	 * One value from the enumerated list
26
	 * One value from the enumerated list
27
	 */
27
	 */
28
	private String value;
28
	private String value;
29
 
29
 
-
 
30
	private long helpDocDefinitionID;
30
	/**
31
	/**
31
	 * 
32
	 * 
32
	 * @param id
33
	 * @param id
33
	 * @param value
34
	 * @param value
34
	 */
35
	 */
Line 71... Line 72...
71
	@Override
72
	@Override
72
	public String toString() {
73
	public String toString() {
73
		return "EnumValue [id=" + id + ", value=" + value + "]";
74
		return "EnumValue [id=" + id + ", value=" + value + "]";
74
	}
75
	}
75
 
76
 
-
 
77
    /**
-
 
78
     * @param helpDocDefinitionID the helpDocDefinitionID to set
-
 
79
     */
-
 
80
    public void setHelpDocDefinitionID(long helpDocDefinitionID) {
-
 
81
        this.helpDocDefinitionID = helpDocDefinitionID;
-
 
82
    }
-
 
83
 
-
 
84
    /**
-
 
85
     * @return the helpDocDefinitionID
-
 
86
     */
-
 
87
    public long getHelpDocDefinitionID() {
-
 
88
        return helpDocDefinitionID;
-
 
89
    }
-
 
90
 
76
}
91
}