bpsim.FloatingParameterType Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbpm-bpmn2-emfextmodel Show documentation
Show all versions of jbpm-bpmn2-emfextmodel Show documentation
jBPM BPMN2 EMF Extension Model
/*
* Copyright 2015 Red Hat, Inc. and/or its affiliates.
*
* 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 'Floating Parameter Type'.
*
*
*
* The following features are supported:
*
* - {@link bpsim.FloatingParameterType#getCurrencyUnit Currency Unit}
* - {@link bpsim.FloatingParameterType#getTimeUnit Time Unit}
* - {@link bpsim.FloatingParameterType#getValue Value}
*
*
*
* @see bpsim.BpsimPackage#getFloatingParameterType()
* @model extendedMetaData="name='FloatingParameter_._type' kind='empty'"
* @generated
*/
public interface FloatingParameterType extends ConstantParameter {
/**
* 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#getFloatingParameterType_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.FloatingParameterType#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#getFloatingParameterType_TimeUnit()
* @model unsettable="true"
* extendedMetaData="kind='attribute' name='timeUnit'"
* @generated
*/
TimeUnit getTimeUnit();
/**
* Sets the value of the '{@link bpsim.FloatingParameterType#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.FloatingParameterType#getTimeUnit Time Unit}' attribute.
*
*
* @see #isSetTimeUnit()
* @see #getTimeUnit()
* @see #setTimeUnit(TimeUnit)
* @generated
*/
void unsetTimeUnit();
/**
* Returns whether the value of the '{@link bpsim.FloatingParameterType#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();
/**
* Returns the value of the 'Value' attribute.
*
*
* If the meaning of the 'Value' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Value' attribute.
* @see #isSetValue()
* @see #unsetValue()
* @see #setValue(double)
* @see bpsim.BpsimPackage#getFloatingParameterType_Value()
* @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Double"
* extendedMetaData="kind='attribute' name='value'"
* @generated
*/
double getValue();
/**
* Sets the value of the '{@link bpsim.FloatingParameterType#getValue Value}' attribute.
*
*
* @param value the new value of the 'Value' attribute.
* @see #isSetValue()
* @see #unsetValue()
* @see #getValue()
* @generated
*/
void setValue(double value);
/**
* Unsets the value of the '{@link bpsim.FloatingParameterType#getValue Value}' attribute.
*
*
* @see #isSetValue()
* @see #getValue()
* @see #setValue(double)
* @generated
*/
void unsetValue();
/**
* Returns whether the value of the '{@link bpsim.FloatingParameterType#getValue Value}' attribute is set.
*
*
* @return whether the value of the 'Value' attribute is set.
* @see #unsetValue()
* @see #getValue()
* @see #setValue(double)
* @generated
*/
boolean isSetValue();
} // FloatingParameterType
© 2015 - 2025 Weber Informatics LLC | Privacy Policy