View Javadoc

1   /* -------------------------------------------------------------------
2    * Java source file for the class TexCoordGenerationFactory
3    * 
4    * Copyright (c), 2003, Masahiro Takatsuka.
5    * All Rights Researved.
6    * 
7    * Original Author: Masahiro Takatsuka (masa@jbeans.net)
8    * $Author: takatsukam $
9    * 
10   * $Date: 2004/03/03 11:53:05 $
11   * 
12   * $Id: TexCoordGenerationFactory.java,v 1.3 2004/03/03 11:53:05 takatsukam Exp $
13   * 
14   * Reference:		Document no:
15   * ___				___
16   * 
17   * To Do:
18   * ___
19   * 
20  ------------------------------------------------------------------- */
21  
22  /* --------------------------- Package ---------------------------- */
23  package net.jbeans.j3d.bean.factory;
24  
25  /* ------------------ Import classes (packages) ------------------- *//package-summary/html">class="comment"> ------------------ Import classes (packages) ------------------- *//package-summary.html">class="comment">/* ------------------ Import classes (packages) ------------------- *//package-summary.html">class="comment"> ------------------ Import classes (packages) ------------------- */
26  import net.jbeans.bean.factory.*;
27  import net.jbeans.j3d.scenegraph.*;
28  
29  
30  /*====================================================================
31            Implementation of class TexCoordGenerationFactory           
32  ====================================================================*/
33  /***
34   * A Factory class provides a method to instantiate an object.
35   * <p>
36   * Every factory must support a call on getInstance.  Each factory should
37   * override the newInstance method to appropriately instantiate and
38   * initialize an instance of an object.
39   * 
40   * @version $Revision: 1.3 $
41   * @author Masahiro Takatsuka (masa@jbeans.net)
42   * @see net.jbeans.bean.factory.Factory
43   */
44  
45  public class TexCoordGenerationFactory implements Factory {
46  	public TexCoordGenerationFactory() {
47  	}
48  	
49      /***
50       * Instantiates an object.
51       *
52       * @param value The new target object. 
53       */
54  	public Object getInstance() {
55  		return new TexCoordGeneration();
56   	}
57  }