/** * * * * $Id$ */ package org.apache.tuscany.das.rdb.test.company; /** * * The Factory for the model. * It provides a create method for each non-abstract class of the model. * * @generated */ public interface CompanyFactory { /** * The singleton instance of the factory. * * * @generated */ CompanyFactory INSTANCE = org.apache.tuscany.das.rdb.test.company.impl.CompanyFactoryImpl.eINSTANCE; /** * Returns a new object of class 'Type'. * * * @return a new object of class 'Type'. * @generated */ CompanyType createCompanyType(); /** * Returns a new object of class 'Datagraph Root'. * * * @return a new object of class 'Datagraph Root'. * @generated */ DatagraphRoot createDatagraphRoot(); /** * Returns a new object of class 'Department Type'. * * * @return a new object of class 'Department Type'. * @generated */ DepartmentType createDepartmentType(); /** * Returns a new object of class 'Employee Type'. * * * @return a new object of class 'Employee Type'. * @generated */ EmployeeType createEmployeeType(); } //CompanyFactory