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.ut2004.t3dgenerator.elements;
7   
8   import cz.cuni.amis.pogamut.unreal.t3dgenerator.annotations.UnrealBean;
9   import cz.cuni.amis.pogamut.unreal.t3dgenerator.elements.AbstractUnrealBean;
10  
11  /**
12   * Abstract predecessor for all elements of type "Object"
13   * @author Martin Cerny
14   */
15  @UnrealBean("Object")
16  public class AbstractObject extends AbstractUnrealBean {
17      
18      public AbstractObject(String className){
19          super(className);        
20      }
21  }