some changes in the model classes and its xml-descriptions
[mir.git] / source / mir / core / model / Content.java
1 /*
2  * Content.java
3  * 
4  * Copyright (C) 2001, 2002, 2003 The Mir-coders group
5  *
6  * This file is part of Mir.
7  *
8  * Mir is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * Mir is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with Mir; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  * In addition, as a special exception, The Mir-coders gives permission to link
23  * the code of this program with  any library licensed under the Apache Software License,
24  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library
25  * (or with modified versions of the above that use the same license as the above),
26  * and distribute linked combinations including the two.  You must obey the
27  * GNU General Public License in all respects for all of the code used other than
28  * the above mentioned libraries.  If you modify this file, you may extend this
29  * exception to your version of the file, but you are not obligated to do so.
30  * If you do not wish to do so, delete this exception statement from your version.
31  */
32 package mir.core.model;
33
34 import java.io.Serializable;
35 import java.util.Set;
36
37 import org.apache.commons.lang.builder.ToStringBuilder;
38
39 /**
40  * 
41  * Content
42  * @author idefix
43  * @version $Id: Content.java,v 1.2 2003/08/17 19:13:19 idfx Exp $
44  */
45 public class Content extends Media implements Serializable {
46
47     /** persistent field */
48     private boolean isHtml;
49
50     /** nullable persistent field */
51     private String contentData;
52
53     /** persistent field */
54     private ArticleType articleType;
55
56     /** nullable persistent field */
57     private mir.core.model.Content parentContent;
58
59     /** persistent field */
60     private Set childContent;
61
62     /** persistent field */
63     private Set topics;
64
65     /** persistent field */
66     private Set attachedMedias;
67
68     /** default constructor */
69     public Content() {
70     }
71
72     public boolean isIsHtml() {
73         return this.isHtml;
74     }
75
76     public void setIsHtml(boolean isHtml) {
77         this.isHtml = isHtml;
78     }
79
80     public java.lang.String getContentData() {
81         return this.contentData;
82     }
83
84     public void setContentData(java.lang.String contentData) {
85         this.contentData = contentData;
86     }
87
88     public ArticleType getArticleType() {
89         return this.articleType;
90     }
91
92     public void setArticleType(ArticleType articleType) {
93         this.articleType = articleType;
94     }
95
96     public mir.core.model.Content getParentContent() {
97         return this.parentContent;
98     }
99
100     public void setParentContent(mir.core.model.Content parentContent) {
101         this.parentContent = parentContent;
102     }
103
104     public Set getChildContent() {
105         return this.childContent;
106     }
107
108     public void setChildContent(Set childContent) {
109         this.childContent = childContent;
110     }
111
112     public Set getTopics() {
113         return this.topics;
114     }
115
116     public void setTopics(Set topics) {
117         this.topics = topics;
118     }
119
120     public Set getAttachedMedias() {
121         return this.attachedMedias;
122     }
123
124     public void setAttachedMedias(Set attachedMedias) {
125         this.attachedMedias = attachedMedias;
126     }
127
128     public String toString() {
129         return new ToStringBuilder(this)
130             .append("id", getId())
131             .toString();
132     }
133
134 }