View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   
6   package cz.cuni.amis.pogamut.udk.t3dgenerator.elements;
7   
8   import cz.cuni.amis.pogamut.unreal.t3dgenerator.annotations.UnrealBean;
9   import cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes.UnrealReference;
10  
11  /**
12   * Abstract predecessor for all elements of type "Object"
13   * @author Martin Cerny
14   */
15  @UnrealBean("Object")
16  public class AbstractObject extends AbstractBean {
17  
18      public AbstractObject(String className, UnrealReference archetype) {
19          super(className,archetype);
20      }
21  
22      public AbstractObject(String className, String archetypeName) {
23          super(className,archetypeName);
24      }
25      
26      public AbstractObject(String className){
27          super(className);        
28      }
29  }