本文整理了Java中org.eclipse.uml2.uml.Operation.getLower()
方法的一些代码示例,展示了Operation.getLower()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Operation.getLower()
方法的具体详情如下:
包路径:org.eclipse.uml2.uml.Operation
类名称:Operation
方法名:getLower
[英]Returns the value of the 'Lower' attribute. The default value is "1"
. This information is derived from the return result for this Operation. Specifies the lower multiplicity of the return parameter, if present.
[中]返回“Lower”属性的值。默认值为[$0$]。此信息来自此操作的返回结果。指定返回参数的较低多重性(如果存在)。
代码示例来源:origin: org.andromda.metafacades/andromda-metafacades-emf-uml22
/**
* Get the UML lower multiplicity Not implemented for UML1.4
* @return multiplicity lowerBound
*/
@Override
protected int handleGetLower()
{
// MD11.5 Exports multiplicity as String
return this.metaObject.getLower();
//return UmlUtilities.parseLowerMultiplicity(this.metaObject.getLower(),
// (ClassifierFacade) this.getReturnType(), "0");
// ObjectUtils.toString(this.getConfiguredProperty(UMLMetafacadeProperties.DEFAULT_MULTIPLICITY)));
}
代码示例来源:origin: org.andromda.bootstrap.metafacades/andromda-metafacades-emf-uml22
/**
* Get the UML lower multiplicity Not implemented for UML1.4
* @return multiplicity lowerBound
*/
@Override
protected int handleGetLower()
{
// MD11.5 Exports multiplicity as String
return this.metaObject.getLower();
//return UmlUtilities.parseLowerMultiplicity(this.metaObject.getLower(),
// (ClassifierFacade) this.getReturnType(), "0");
// ObjectUtils.toString(this.getConfiguredProperty(UMLMetafacadeProperties.DEFAULT_MULTIPLICITY)));
}
代码示例来源:origin: org.eclipse.uml2/org.eclipse.uml2.uml
int lower = operation.getLower();
代码示例来源:origin: org.eclipse.uml2/org.eclipse.uml2.uml
if (lowerBound != operation.getLower()) {
operation.setLower(lowerBound);
内容来源于网络,如有侵权,请联系作者删除!