1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
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 }