Subversion Repositories bacoAlunos

Rev

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

Rev 1860 Rev 1918
Line 8... Line 8...
8
 */
8
 */
9
public class DocumentSection extends SectionContainer
9
public class DocumentSection extends SectionContainer
10
{
10
{
11
    1.5.0/docs/api/java/lang/String.html">String title = "";
11
    1.5.0/docs/api/java/lang/String.html">String title = "";
12
 
12
 
13
    List<DocComponent> components = new ArrayList<DocComponent>();
13
    ArrayList<DocComponent> components = new ArrayList<DocComponent>();
14
 
14
 
15
    public DocumentSection() {
15
    public DocumentSection() {
16
    }
16
    }
17
 
17
 
18
    public DocumentSection(1.5.0/docs/api/java/lang/String.html">String title) {
18
    public DocumentSection(1.5.0/docs/api/java/lang/String.html">String title) {
Line 30... Line 30...
30
 
30
 
31
    public List<DocComponent> getComponents() {
31
    public List<DocComponent> getComponents() {
32
        return components;
32
        return components;
33
    }
33
    }
34
 
34
 
35
    public void setComponents(List<DocComponent> components) {
35
    public void setComponents(ArrayList<DocComponent> components) {
36
        this.components = components;
36
        this.components = components;
37
    }
37
    }
38
 
38
 
39
 
39
 
40
 
40