1
2
3
4
5
6
7 package org.asyrinx.joey.gen.model.rdb;
8
9 import org.asyrinx.joey.gen.model.AbstractEnumerationSet;
10
11 /***
12 * @author akima
13 */
14 public class RdbEnumerationSet extends AbstractEnumerationSet {
15
16 /***
17 *
18 */
19 public RdbEnumerationSet(Database database) {
20 super(database);
21 }
22
23
24
25
26
27
28 public Database getParent() {
29 return (Database) super.getParentElement();
30 }
31
32 public void add(RdbEnumeration enumeration) {
33 super.add(enumeration);
34 }
35
36
37
38
39
40
41 public boolean contains(RdbEnumeration enumeration) {
42 return super.contains(enumeration);
43 }
44
45
46
47
48
49
50 public RdbEnumeration getEnumeration(int index) {
51 return (RdbEnumeration) super.getElement(index);
52 }
53
54
55
56
57
58
59 public RdbEnumeration getEnumeration(String name) {
60 return (RdbEnumeration) super.getElement(name);
61 }
62
63
64
65
66
67
68 public RdbEnumeration removeIndex(String name) {
69 return (RdbEnumeration) super.removeElement(name);
70 }
71 }