blob: f7903268fab2170d4101321a787a74eb6f2a4ce6 [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.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Population Group</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.stem.populationmodels.standard.PopulationGroup#getIdentifier <em>Identifier</em>}</li>
* <li>{@link org.eclipse.stem.populationmodels.standard.PopulationGroup#getFraction <em>Fraction</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.stem.populationmodels.standard.StandardPackage#getPopulationGroup()
* @model
* @generated
*/
public interface PopulationGroup extends EObject {
/**
* Returns the value of the '<em><b>Identifier</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Identifier</em>' attribute.
* @see #setIdentifier(String)
* @see org.eclipse.stem.populationmodels.standard.StandardPackage#getPopulationGroup_Identifier()
* @model
* @generated
*/
String getIdentifier();
/**
* Sets the value of the '{@link org.eclipse.stem.populationmodels.standard.PopulationGroup#getIdentifier <em>Identifier</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Identifier</em>' attribute.
* @see #getIdentifier()
* @generated
*/
void setIdentifier(String value);
/**
* Returns the value of the '<em><b>Fraction</b></em>' attribute.
* The default value is <code>"0.5"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Fraction</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Fraction</em>' attribute.
* @see #setFraction(double)
* @see org.eclipse.stem.populationmodels.standard.StandardPackage#getPopulationGroup_Fraction()
* @model default="0.5"
* @generated
*/
double getFraction();
/**
* Sets the value of the '{@link org.eclipse.stem.populationmodels.standard.PopulationGroup#getFraction <em>Fraction</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Fraction</em>' attribute.
* @see #getFraction()
* @generated
*/
void setFraction(double value);
} // PopulationGroup