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 1... Line 1...
1
package pt.estgp.estgweb.utils.documentBuilder;
1
package pt.estgp.estgweb.utils.documentBuilder;
2
 
2
 
3
import java.util.ArrayList;
3
import java.util.ArrayList;
4
import java.util.List;
-
 
5
 
4
 
6
/**
5
/**
7
 * Created by jorgemachado on 07/11/17.
6
 * Created by jorgemachado on 07/11/17.
8
 */
7
 */
9
public class SectionContainer extends ExtensibleDocObject
8
public class SectionContainer extends ExtensibleDocObject
10
{
9
{
11
    List<DocumentSection> sections = new ArrayList<DocumentSection>();
10
    ArrayList<DocumentSection> sections = new ArrayList<DocumentSection>();
12
 
11
 
13
    public List<DocumentSection> getSections() {
12
    public ArrayList<DocumentSection> getSections() {
14
        return sections;
13
        return sections;
15
    }
14
    }
16
 
15
 
17
    public void setSections(List<DocumentSection> sections) {
16
    public void setSections(ArrayList<DocumentSection> sections) {
18
        this.sections = sections;
17
        this.sections = sections;
19
    }
18
    }
20
 
19
 
21
    public DocumentSection findSection(1.5.0/docs/api/java/lang/Class.html">Class sectionClass)
20
    public DocumentSection findSection(1.5.0/docs/api/java/lang/Class.html">Class sectionClass)
22
    {
21
    {