1 /*
2 * joey-gen and its relative products are published under the terms
3 * of the Apache Software License.
4 *
5 * Created on 2004/10/27 2:01:56
6 */
7 package org.asyrinx.joey.gen.model;
8
9 /***
10 * @author takeshi
11 */
12 public class AbstractEnumerationSet extends ElementSet {
13
14 /***
15 *
16 */
17 public AbstractEnumerationSet(Element parent) {
18 super(parent);
19 }
20
21 /*
22 * (non-Javadoc)
23 *
24 * @see org.asyrinx.joey.gen.model.ElementSet#isEntity()
25 */
26 public boolean isEntity() {
27 return false;
28 }
29
30 protected void add(AbstractEnumeration enumeration) {
31 super.add(enumeration);
32 }
33
34 /*
35 * (non-Javadoc)
36 *
37 * @see org.asyrinx.joey.gen.model.ElementSet#contains(org.asyrinx.joey.gen.model.Element)
38 */
39 protected boolean contains(AbstractEnumeration enumeration) {
40 return super.contains(enumeration);
41 }
42
43 }