子屏幕规则类样本

此类表示主类别页中的子屏幕(或可展开列表)。它包含给定家庭成员的收入记录列表。businessObjectID 包含个人的 concernRoleID,此人的信息包含在此类的给定实例对象中。在运行时,如果在主屏幕上的列表中选择了某人,那么其 concernRoleID 会传递至子屏幕的 UIM。然后它会查询系统以告诉系统它正在此案例中查找的 attributeName 和 businessObjectID:

attributeName = familyMemberFullIncomeList
businessObjectID = concernRoleID of chosen person

以及检索主页的 XML 时所需的标准信息,例如,determinationID、类别、日期等。

<Class
 extends="DefaultCaseSubscreenDisplay"
 extendsRuleSet="DefaultProductDecisionDetailsRuleSet"
 name="CaseParticipantFullIncomeClass"
>
  
  <!-- Filled with the Persons concernRoleID -->
  <Attribute name="businessObjectID">
    <Annotations>
      <Display/>
    </Annotations>
    ...
  </Attribute>
  
  <Attribute name="participantFullName">
    <Annotations>
      <Display/>
    </Annotations>
    ...
  </Attribute>
  
  <Attribute name="participantIncomeList">
    <Annotations>
      <Display/>
    </Annotations>
    ...
  </Attribute>
</Class>