org.eclipse.ocl.Query.resultType()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(0.7k)|赞(0)|评价(0)|浏览(112)

本文整理了Java中org.eclipse.ocl.Query.resultType方法的一些代码示例,展示了Query.resultType的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.resultType方法的具体详情如下:
包路径:org.eclipse.ocl.Query
类名称:Query
方法名:resultType

Query.resultType介绍

[英]Obtains the OCL result type of the query. This may be a classifier in the user model, or it may represent a pre-defined OCL data type such as OCLStandardLibrary#getBoolean().
[中]获取查询的OCL结果类型。这可能是用户模型中的一个分类器,也可能代表预定义的OCL数据类型,例如OCLStandardLibrary#getBoolean()。

代码示例

代码示例来源:origin: org.eclipse.ocl/ecore

public EClassifier resultType() {
  return delegate.resultType();
}

代码示例来源:origin: org.eclipse.ocl/uml

public Classifier resultType() {
  return delegate.resultType();
}

相关文章