blob: 3c338022ece14f91d899da2906c47d123d1bb5f0 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.stem.definitions.edges;
import org.eclipse.stem.core.graph.Edge;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Population Edge</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.stem.definitions.edges.PopulationEdge#getPopulationIdentifier <em>Population Identifier</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.stem.definitions.edges.EdgesPackage#getPopulationEdge()
* @model
* @generated
*/
public interface PopulationEdge extends Edge {
/**
* 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.definitions.edges.EdgesPackage#getPopulationEdge_PopulationIdentifier()
* @model default="human"
* @generated
*/
String getPopulationIdentifier();
/**
* Sets the value of the '{@link org.eclipse.stem.definitions.edges.PopulationEdge#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);
} // PopulationEdge