View Javadoc

1   /*
2    * Joey and its relative products are published under the terms
3    * of the Apache Software License.
4    */
5   /*
6    * Created on 2004/01/27
7    */
8   package org.asyrinx.joey.gen.model.rdb;
9   
10  import org.asyrinx.joey.gen.model.AbstractEnumeration;
11  
12  /***
13   * @author akima
14   */
15  public class RdbEnumeration extends AbstractEnumeration {
16  
17      /***
18       *  
19       */
20      public RdbEnumeration() {
21          super();
22      }
23  
24      /***
25       * @param parent
26       * @param name
27       */
28      public RdbEnumeration(Database parent, String name) {
29          super(parent, name);
30      }
31  
32      /***
33       * @param parent
34       * @param name
35       * @param type
36       */
37      public RdbEnumeration(Database parent, String name, String type) {
38          super(parent, name, type);
39      }
40  
41      /*
42       * (non-Javadoc)
43       * 
44       * @see org.asyrinx.joey.gen.model.Element#getParentElement()
45       */
46      public Database getParent() {
47          return (Database) super.getParentElement();
48      }
49  
50  }