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.unreal.t3dgenerator;
7   
8   import java.io.IOException;
9   import java.io.OutputStreamWriter;
10  import java.util.List;
11  
12  /**
13   * Interface for any T3d generator.
14   * @author Martin Cerny
15   */
16  public interface IT3dGenerator {
17      public void generateT3d(Object rootElement, OutputStreamWriter out) throws IOException;
18      public void generateT3d(List elements, OutputStreamWriter out) throws IOException;
19  }