/**
*/
package mutator;
import de.mdelab.workflow.components.WorkflowComponent;
/**
*
* A representation of the model object 'Random Mutate Model'.
*
*
*
* The following features are supported:
*
*
* - {@link mutator.RandomMutateModel#getModelSlot Model Slot}
*
*
* @see mutator.MutatorPackage#getRandomMutateModel()
* @model
* @generated
*/
public interface RandomMutateModel extends WorkflowComponent {
/**
* Returns the value of the 'Model Slot' attribute.
*
*
* @return the value of the 'Model Slot' attribute.
* @see #setModelSlot(String)
* @see mutator.MutatorPackage#getRandomMutateModel_ModelSlot()
* @model required="true"
* @generated
*/
String getModelSlot();
/**
* Sets the value of the '{@link mutator.RandomMutateModel#getModelSlot Model Slot}' attribute.
*
*
* @param value the new value of the 'Model Slot' attribute.
* @see #getModelSlot()
* @generated
*/
void setModelSlot(String value);
} // RandomMutateModel