43 lines
1019 B
Java
43 lines
1019 B
Java
/**
|
|
*/
|
|
package mutator;
|
|
|
|
import org.eclipse.emf.ecore.EFactory;
|
|
|
|
/**
|
|
* <!-- begin-user-doc -->
|
|
* The <b>Factory</b> for the model.
|
|
* It provides a create method for each non-abstract class of the model.
|
|
* <!-- end-user-doc -->
|
|
* @see mutator.MutatorPackage
|
|
* @generated
|
|
*/
|
|
public interface MutatorFactory extends EFactory {
|
|
/**
|
|
* The singleton instance of the factory.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @generated
|
|
*/
|
|
MutatorFactory eINSTANCE = mutator.impl.MutatorFactoryImpl.init();
|
|
|
|
/**
|
|
* Returns a new object of class '<em>Random Mutate Model</em>'.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @return a new object of class '<em>Random Mutate Model</em>'.
|
|
* @generated
|
|
*/
|
|
RandomMutateModel createRandomMutateModel();
|
|
|
|
/**
|
|
* Returns the package supported by this factory.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @return the package supported by this factory.
|
|
* @generated
|
|
*/
|
|
MutatorPackage getMutatorPackage();
|
|
|
|
} //MutatorFactory
|