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   /**
9    * Context employed by {@link DefaultT3dGenerator} in preprocessing elements.
10   * @author Martin Cerny
11   */
12  public class DefaultT3dGeneratorContext implements IT3dGeneratorContext {
13      private INamingFactory namingFactory;
14  
15      public DefaultT3dGeneratorContext(INamingFactory namingFactory) {
16          this.namingFactory = namingFactory;
17      }
18  
19      @Override
20      public INamingFactory getNamingFactory() {
21          return namingFactory;
22      }
23  
24  
25  }