Subversion Repositories eFlore/Applications.coel

Rev

Rev 985 | Rev 1173 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 985 Rev 989
Line 122... Line 122...
122
	
122
	
123
	public boolean etrePublic() {
123
	public boolean etrePublic() {
124
		return (getPublic().equals("1") ? true : false);
124
		return (getPublic().equals("1") ? true : false);
125
	}
125
	}
126
	public String getPublic() {
126
	public String getPublic() {
127
		return renvoyerValeurCorrecte("public");
127
		return renvoyerValeurCorrecte("mark_public");
128
	}
128
	}
129
	public void setPublic(String publique) {
129
	public void setPublic(String publique) {
130
		this.set("public", publique);
130
		this.set("mark_public", publique);
Line 131... Line 131...
131
	}
131
	}
132
	
132