0

我基本上想要我的 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

4

1 回答 1

2

假设您的 XML 元素和属性具有明显的含义,我希望捕获含义的正确方法((MASTER || PART) && (Drawing))

<adapt type="com.teamcenter.rac.kernel.TCComponent">
  <and>
    <or>
      <test property="type"
            value="MASTER">
      </test>
      <test property="type"
            value="UGPART">
      </test>
    </or>
    <test property="DRAWING"
          value= "">
    </test>
  </and>       
</adapt>

但这纯粹是猜测,因为我不知道哪些软件无法理解您要说的内容。

于 2012-08-23T01:56:15.687 回答