Class ComponentContainerClass
- java.lang.Object
-
- com.flower.docs.domain.common.IdentifiableElement
-
- com.flower.docs.domain.componentclass.ComponentClass
-
- com.flower.docs.domain.componentclass.ComponentContainerClass
-
- All Implemented Interfaces:
HasDescription
,java.io.Serializable
- Direct Known Subclasses:
FolderClass
public abstract class ComponentContainerClass extends ComponentClass implements java.io.Serializable
<p>Java class for ComponentContainerClass complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> <complexType name="ComponentContainerClass"> <complexContent> <extension base="{http://flower.com/docs/domain/componentclass}ComponentClass"> <sequence> <element name="children" type="{http://flower.com/docs/domain/component}ComponentReference" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType> </pre>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<ComponentReference>
children
Allowed component classes as children-
Fields inherited from class com.flower.docs.domain.componentclass.ComponentClass
active, category, data, descriptions, displayNames, retentionDuration, tagCategories, tagReferences, technical
-
Fields inherited from class com.flower.docs.domain.common.IdentifiableElement
id
-
-
Constructor Summary
Constructors Constructor Description ComponentContainerClass()
Default no-arg constructor abcComponentContainerClass(Id id, Data data, java.util.List<Id> tagCategories, java.util.List<TagReference> tagReferences, java.util.List<I18NLabel> displayNames, java.util.List<I18NLabel> descriptions, DurationType retentionDuration, Category category, boolean active, java.lang.Boolean technical, java.util.List<ComponentReference> children)
Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ComponentReference>
getChildren()
Gets the value of the children property.void
setChildren(java.util.List<ComponentReference> value)
-
Methods inherited from class com.flower.docs.domain.componentclass.ComponentClass
getCategory, getData, getDescriptions, getDisplayNames, getRetentionDuration, getTagCategories, getTagReferences, isActive, isTechnical, setActive, setCategory, setData, setDescriptions, setDisplayNames, setRetentionDuration, setTagCategories, setTagReferences, setTechnical
-
Methods inherited from class com.flower.docs.domain.common.IdentifiableElement
getId, setId
-
-
-
-
Field Detail
-
children
protected java.util.List<ComponentReference> children
Allowed component classes as children
-
-
Constructor Detail
-
ComponentContainerClass
public ComponentContainerClass()
Default no-arg constructor abc
-
ComponentContainerClass
public ComponentContainerClass(Id id, Data data, java.util.List<Id> tagCategories, java.util.List<TagReference> tagReferences, java.util.List<I18NLabel> displayNames, java.util.List<I18NLabel> descriptions, DurationType retentionDuration, Category category, boolean active, java.lang.Boolean technical, java.util.List<ComponentReference> children)
Fully-initialising value constructor
-
-
Method Detail
-
getChildren
public java.util.List<ComponentReference> getChildren()
Gets the value of the children property. <p> This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a <CODE>set</CODE> method for the children property. <p> For example, to add a new item, do as follows: <pre> getChildren().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the listComponentReference
<p> Allowed component classes as children
-
setChildren
public void setChildren(java.util.List<ComponentReference> value)
- See Also:
getChildren()
-
-