You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Model Documentation

The OutputDisplay class is used:

  • In the display attribute of an instance of the OrderedDisplay class representing 1 of the ordered displays within the displays attribute of an output.
  • To specify text values to be used in different parts (or "sections") of the display, such as the titles, footnotes, etc.

ER Diagram: OutputDisplay

An instance of the OutputDisplay class is created for each display in an output and, in each instance:

  • The id attribute contains the identifier value assigned for the display.
  • The version attribute contains the version number of the display.
  • The name attribute indicates the assigned name of the display (e.g., "Table 14.1.2", "Table 14.3.1"). The display name should be unique within the reporting event.
  • The displayTitle attribute contains a textual description of the display (e.g., "Summary of Demographics and Baseline Characteristics - Safety", "Overall Summary of Treatment-Emergent Adverse Events"). The display name should also be unique within the reporting event.
  • The displaySections attribute contains a list of display sections for which text values have been defined, with each section of a display represented as an instance of the DisplaySection class.

The DisplaySection class includes the following attributes:

  • sectionType, which includes a value from the DisplaySectionTypeEnum enumeration (e.g., "Title", "Footnote", "Abbreviation") to indicate which section of the display contains the specified text values.
  • orderedSubSections, which contains a list of ordered text value specifications (or "sub-sections"), each of which is represented as an instance of one of the specializations of the OrderedDisplaySubSection class:
    • OrderedSubSection, which contains a new sub-section specification represented in the subSection attribute as an instance of the DisplaySubSection class. In the DisplaySubSection class the text value is specified in the text attribute and an identifier value is assigned in the id attribute.
    • OrderedSubSectionRef, which contains, in the subSectionId attribute, the identifier of a sub-section that has already been defined, either as part of a global display section (as described in the GlobalDisplaySection section) or within another display section.

In both specializations of the OrderedDisplaySubSection class, the order attribute contains an integer to order the sub-section with respect to other sub-sections in the display section (i.e., "1" for the first sub-section in the display section, "2" for the second sub-section, etc.).

Example


  • No labels