Warning: Attempt to read property "date" on null in /home/www/websvn.26th.net/html/blame.php on line 247

Warning: Attempt to read property "msg" on null in /home/www/websvn.26th.net/html/blame.php on line 247

Deprecated: preg_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /home/www/websvn.26th.net/html/blame.php on line 247
WebSVN – general – Blame – /hostadmiral/trunk/src/ak/hostadmiral/core/model/GeneralModelObject.java/ – Rev 913

Subversion Repositories general

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
913 dev 1
package ak.hostcaptain.core.model;
2
 
3
public abstract class GeneralModelObject
4
	implements ModelObject
5
{
6
	private Boolean enabled;
7
	private String  comment;
8
 
9
	/**
10
	 *
11
	 * @hibernate.property
12
	 */
13
	public Boolean getEnabled()
14
	{
15
		return enabled;
16
	}
17
 
18
	public void setEnabled(Boolean enabled)
19
	{
20
		this.enabled = enabled;
21
	}
22
 
23
	/**
24
	 *
25
	 * @hibernate.property
26
	 */
27
	public String getComment()
28
	{
29
		return comment;
30
	}
31
 
32
	public void setComment(String comment)
33
	{
34
		this.comment = comment;
35
	}
36
}