我基本上想要我的 XML 中的以下逻辑
obj 必须是 ((MASTER || PART) && (Drawing))
这似乎不起作用
<adapt type="com.teamcenter.rac.kernel.TCComponent">
<or>
<test property="type"
value="MASTER">
</test>
<test property="type"
value="UGPART">
</test>
</or>
<and>
<test property="DRAWING"
value= "">
</test>
</and>
</adapt>
它必须是以下之一(MASTER 或 PART)并且是 DRAWING 我主要担心如何将该逻辑添加到上面的 XML