KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > spoon > processing > FactoryAccessor


1 package spoon.processing;
2
3 import spoon.reflect.Factory;
4
5 /**
6  * This interface represents an object that can access the meta-model factory.
7  */

8 public interface FactoryAccessor {
9
10     /**
11      * Gets the factory of this object.
12      */

13     Factory getFactory();
14
15     /**
16      * Sets the factory object.
17      */

18     void setFactory(Factory factory);
19
20 }
21
Popular Tags