1 24 25 package org.objectweb.fractal.api.factory; 26 27 import org.objectweb.fractal.api.Component; 28 import org.objectweb.fractal.api.Type; 29 30 33 34 public interface Factory { 35 36 41 42 Type getFcInstanceType (); 43 44 52 53 Object getFcControllerDesc (); 54 55 65 66 Object getFcContentDesc (); 67 68 75 76 Component newFcInstance () throws InstantiationException ; 77 } 78 | Popular Tags |