/* * Copyright 2015 JBoss Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** */ package bpsim; /** * * A representation of the model object 'Distribution Parameter'. * * *

* The following features are supported: *

*

* * @see bpsim.BpsimPackage#getDistributionParameter() * @model extendedMetaData="name='DistributionParameter' kind='empty'" * @generated */ public interface DistributionParameter extends ParameterValue { /** * Returns the value of the 'Currency Unit' attribute. * *

* If the meaning of the 'Currency Unit' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Currency Unit' attribute. * @see #setCurrencyUnit(String) * @see bpsim.BpsimPackage#getDistributionParameter_CurrencyUnit() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='currencyUnit'" * @generated */ String getCurrencyUnit(); /** * Sets the value of the '{@link bpsim.DistributionParameter#getCurrencyUnit Currency Unit}' attribute. * * * @param value the new value of the 'Currency Unit' attribute. * @see #getCurrencyUnit() * @generated */ void setCurrencyUnit(String value); /** * Returns the value of the 'Time Unit' attribute. * The literals are from the enumeration {@link bpsim.TimeUnit}. * *

* If the meaning of the 'Time Unit' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Time Unit' attribute. * @see bpsim.TimeUnit * @see #isSetTimeUnit() * @see #unsetTimeUnit() * @see #setTimeUnit(TimeUnit) * @see bpsim.BpsimPackage#getDistributionParameter_TimeUnit() * @model unsettable="true" * extendedMetaData="kind='attribute' name='timeUnit'" * @generated */ TimeUnit getTimeUnit(); /** * Sets the value of the '{@link bpsim.DistributionParameter#getTimeUnit Time Unit}' attribute. * * * @param value the new value of the 'Time Unit' attribute. * @see bpsim.TimeUnit * @see #isSetTimeUnit() * @see #unsetTimeUnit() * @see #getTimeUnit() * @generated */ void setTimeUnit(TimeUnit value); /** * Unsets the value of the '{@link bpsim.DistributionParameter#getTimeUnit Time Unit}' attribute. * * * @see #isSetTimeUnit() * @see #getTimeUnit() * @see #setTimeUnit(TimeUnit) * @generated */ void unsetTimeUnit(); /** * Returns whether the value of the '{@link bpsim.DistributionParameter#getTimeUnit Time Unit}' attribute is set. * * * @return whether the value of the 'Time Unit' attribute is set. * @see #unsetTimeUnit() * @see #getTimeUnit() * @see #setTimeUnit(TimeUnit) * @generated */ boolean isSetTimeUnit(); } // DistributionParameter