/** * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Andre Dietisheim - initial API and implementation * Eike Stepper - maintenance */ package org.eclipse.net4j.util.tests.defs; import org.eclipse.emf.ecore.EFactory; /** * The Factory for the model. It provides a create method for each non-abstract class of * the model. * * @see org.eclipse.net4j.util.tests.defs.TestDefsPackage * @generated */ public interface TestDefsFactory extends EFactory { /** * The singleton instance of the factory. * * @generated */ TestDefsFactory eINSTANCE = org.eclipse.net4j.util.tests.defs.impl.TestDefsFactoryImpl.init(); /** * Returns a new object of class 'Test Def'. * * @return a new object of class 'Test Def'. * @generated */ TestDef createTestDef(); /** * Returns the package supported by this factory. * * @return the package supported by this factory. * @generated */ TestDefsPackage getTestDefsPackage(); } // TestDefsFactory