/** * * * * $Id$ */ package org.apache.tuscany.model; /** * * The Factory for the model. * It provides a create method for each non-abstract class of the model. * * @generated */ public interface ConfigurationFactory { /** * The singleton instance of the factory. * * * @generated */ ConfigurationFactory INSTANCE = org.apache.tuscany.model.impl.ConfigurationFactoryImpl.eINSTANCE; /** * Returns a new object of class 'Configuration'. * * * @return a new object of class 'Configuration'. * @generated */ Configuration createConfiguration(); /** * Returns a new object of class 'DAS Meta'. * * * @return a new object of class 'DAS Meta'. * @generated */ DASMeta createDASMeta(); } //ConfigurationFactory