blob: 319d8f01b36228d8551113edf660619bc24867fa [file] [log] [blame]
package org.eclipse.stem.populationmodels.standard;
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import org.eclipse.stem.core.model.NodeDecorator;
import org.eclipse.stem.core.modifier.Modifiable;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Population Initializer</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.stem.populationmodels.standard.PopulationInitializer#getPopulationIdentifier <em>Population Identifier</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.stem.populationmodels.standard.StandardPackage#getPopulationInitializer()
* @model abstract="true"
* @generated
*/
public interface PopulationInitializer extends NodeDecorator, Modifiable {
/**
* Returns the value of the '<em><b>Population Identifier</b></em>' attribute.
* The default value is <code>"human"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Population Identifier</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Population Identifier</em>' attribute.
* @see #setPopulationIdentifier(String)
* @see org.eclipse.stem.populationmodels.standard.StandardPackage#getPopulationInitializer_PopulationIdentifier()
* @model default="human"
* @generated
*/
String getPopulationIdentifier();
/**
* Sets the value of the '{@link org.eclipse.stem.populationmodels.standard.PopulationInitializer#getPopulationIdentifier <em>Population Identifier</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Population Identifier</em>' attribute.
* @see #getPopulationIdentifier()
* @generated
*/
void setPopulationIdentifier(String value);
} // PopulationInitializer