source: trunk/greenstone3-extensions/gs3build/src/org/greenstone/gsdl3/gs3build/schema/SchemaSequence.java@ 12188

Last change on this file since 12188 was 12188, checked in by kjdon, 18 years ago

Initial revision

  • Property svn:keywords set to Author Date Id Revision
File size: 369 bytes
Line 
1package org.greenstone.gsdl3.gs3build.schema;
2
3import org.w3c.dom.Element;
4
5import java.util.List;
6import java.util.ArrayList;
7
8public class SchemaSequence extends SchemaNode
9{
10 List sequence;
11
12 public SchemaSequence(Element element) throws SchemaException
13 { super(element);
14 }
15
16 public List _allocate()
17 { this.sequence = new ArrayList();
18 return this.sequence;
19 }
20}
Note: See TracBrowser for help on using the repository browser.