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