- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在基于 http://jazz.net 中提供的研讨会开发 IBM RTC Advisors。 .
现在我正在尝试将其 OSGi 模块中提供的 xsd 文档移植到注释+jaxb。
这是 XSD 的一部分:
<xsd:element name="followup-action" substitutionGroup="process:followup-action"
type="buildOnStateChangeType"/>
<xsd:complexType name="buildOnStateChangeType">
<xsd:annotation>
<xsd:documentation>
This type defines the build on state change type. It is a
subtype of the abstract process:followupActionType. This
restriction, along with the substitutionGroup specification
above, makes it possible to add configuration of the participant
to a project or team area's process configuration. Note the
forward references to the trigger and build types defined below.
Take particular note of the id attribute. It is required and has
a fixed value that points to our operation participant extension.
</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:restriction base="process:followupActionType">
<xsd:all>
<xsd:element name="trigger" type="triggerType"
minOccurs="1" maxOccurs="1"/>
<xsd:element name="build" type="buildType" minOccurs="1"
maxOccurs="1"/>
</xsd:all>
<xsd:attribute name="id" type="xsd:string" use="required"
fixed="net.jazz.rtcext.workitem.extensions.service.buildOnStateChange"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="triggerType">
<xsd:annotation>
<xsd:documentation>
This type defines the work item type to be monitored
and the work item state that should trigger the
operation participant.
</xsd:documentation>
</xsd:annotation>
<xsd:all>
<xsd:element name="changed-workitem-type" minOccurs="1"
maxOccurs="1">
<xsd:complexType>
<xsd:attribute name="id" type="xsd:string"
use="required"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="trigger-state" minOccurs="1" maxOccurs="1">
<xsd:complexType>
<xsd:attribute name="id" type="xsd:string"
use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:all>
</xsd:complexType>
<xsd:complexType name="buildType">
<xsd:annotation>
<xsd:documentation>
This type defines the build to run. At this point, it just
includes the build definition id. In the future, it could
include more information, for example, a list of properties
to pass to the build.
</xsd:documentation>
</xsd:annotation>
<xsd:all>
<xsd:element name="build-definition" minOccurs="1" maxOccurs="1">
<xsd:complexType>
<xsd:attribute name="id" type="xsd:string"
use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:all>
</xsd:complexType>
这是流程模板中 XML 的一部分:
<followup-action
xmlns="http://net.jazz.rtcext.workitem.extensions.service/server/buildOnStateChange"
description="When the specified work item type changes to the specified state, the
specified build will be requested."
id="net.jazz.rtcext.workitem.extensions.service.buildOnStateChange"
name="Build on State Change">
<trigger>
<changed-workitem-type id="com.ibm.team.apt.workItemType.story"/>
<trigger-state id="com.ibm.team.apt.story.tested"/>
</trigger>
<build>
<build-definition id="our.integration.build.bogus"/>
</build>
</followup-action>
我的问题是,将 XSD 移植到带有 JAXB 注释的 Java 类的最佳方法是什么?我尝试使用 Eclipse (Luna) JAXB 支持进行逆向工程。
来源:https://jazz.net/library/article/1000
谢谢
最佳答案
抱歉,还不能发表评论......
您为什么要做上面描述的事情? XSD 描述的数据存储在流程配置中,并且有一组 API 可用于从扩展内访问数据。
关于rtc - 是否可以将 IBM RTC Advisor 字段集成到 JAXB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27362577/
我不小心 checkin 了变更集中的一些变更,我不想交付它们。 如何在 RTC 中将待定变更集的变更移动到 Unresolved 变更? 最佳答案 通常的选项是“discard”,但这会删除更改(它
我不小心交付了更改集,其中包括一些在 RTC 中具有本地系统特定配置的附加配置文件。有没有办法在交付后丢弃这些更改?我的意思是这些更改不应该作为其他团队成员的传入更改。 如果有,请提供任何指针。 最佳
在 SVN 中,我们有一个选项可以下载特定版本的代码。这提供了下载旧版本代码的灵活性,也用于构建。 RTC 中是否有选项可以下载特定版本的代码? 最佳答案 是的:一旦你在流上完成了一个 repo 工作
我想根据给定日期现有流的状态创建一个新流。为此,似乎合乎逻辑的做法是在过去的日期/时间在源流中创建基线,但我还没有找到一种方法来做到这一点。 除了组件/流的当前状态之外,是否可以在任何时间创建基线或快
我从本地源目录中删除了一个文件和包,我正在尝试使用 RTC 替换它。当我查看“待定更改”时,该文件没有出现以便再次添加。此外,当我右键单击项目并选择“比较”时,没有选项可以与存储库中的最新版本进行比较
如何获取 RTC 工作项的原始记录版本值。 不是当前版本,而是记录 RTC 项目的原始版本。 假设当前版本是 2.0 但原始 RTC 项目是针对 1.0 记录的。我需要版本的最后一个值是 1.0。 注
我有一个存储库工作区,它有一个默认的流目标。我想编辑流目标并使其仅适用于少数组件。这可以从 RTC Eclipse 客户端实现。如何从 RTC 命令行界面实现相同的目的。请引用RTC 3.0.1.3告
如何从 RTC workItem 中读取历史记录。我想在更改表单历史记录之前和之后检查一些属性更改及其值。通过爵士 API。这怎么可能?请帮忙 。 最佳答案 Ragarding属性,你可以在“Work
IBM 有这个 200+ Mb 的大型 Eclipse 插件,我可以在其中访问 Eclipse 的所有内容和所有功能。 是否有一个更小更轻量级的 Eclipse 插件可用,它可以访问开发人员需要的信息
RTC 中的“项目范围”可见性是什么? 这是否意味着项目区域的成员可以查看此流或工作区? 最佳答案 当您创建一个 repo 工作区时,您可以选择“project scoped”,以便项目区域的成员能够
我在 Windows 2008 服务器上安装了(基本设置)RTC 3.0.1。设置顺利通过,一切看起来都是“绿色”的。但是,当我导航到项目区域以创建一个新项目区域时,出现以下错误消息: The ser
任何人都可以使用 oslc 或 REST 调用帮助我获取其中的迭代和冲刺列表以及该冲刺中的工作项 最佳答案 This thread报告查询迭代可能有点棘手: For the purpose of ob
我正在使用 RTC, 我的 friend 提交了他们的更改集以供审核,我是审核者。我在任何地方都找不到他们的变更集。 最佳答案 This thread总结过程: 项目配置: Precondition
我正在基于 http://jazz.net 中提供的研讨会开发 IBM RTC Advisors。 . 现在我正在尝试将其 OSGi 模块中提供的 xsd 文档移植到注释+jaxb。 这是 XSD 的
我正在寻找一个查询或一种方法来定义我自己的查询或方法来搜索提及特定用户的所有工作项。我该怎么做? 最佳答案 这取决于你所说的“提及”是什么意思。 您可以对属性“全文”进行简单查询,以获取代表您的用户的
我是 RTC 的新手,所以我需要一个尽可能简单的答案。 我最近接受了另一个团队成员的变更集,我需要从我的工作区中丢弃该变更集。我这里的问题是我接受的变更集没有交付,它仍在等待审查批准。如果我放弃变更集
如果我有两个开发流(称为Stream1,Stream2),并且我想将这两个流合并为一个流。 目前,这是我的操作方式: 创建一个新的Stream-Stream3。流3将包含Stream1和Stream2
我在 RTC 中有一个文件(称为 foo.c),我修改了该文件并将其与其他一些更改一起 checkin 变更集 (CS1)。然后,我再次修改该文件,并将其与其他更改一起 checkin 不同的变更集
问题 嗨,我使用以下表单重新混合了网络框架动态房间的模板: https://glitch.com/edit/#!/power-lily-pancake?path=public%2Fscene.html
我正在将 STM32F072ZB 运行到待机模式。 MCU 大部分时间都处于休眠状态(每 1 小时唤醒一次以读取传感器)。由于看门狗正在运行,因此我使用 RTC 每 25 秒生成一次警报(看门狗周期约
我是一名优秀的程序员,十分优秀!