class Origen::Specs::Documentation
This class is used to store documentation map that the user can change
Attributes
Applicable Devices for the map
Exhibit
References that should be referenced within the table title
Level that Section is at. Allows for a key to be found.
DITA Formatted Text that appears before the table
This is the Section Header for the Documentation
Map. Usually these are main headers Examples:
I. Overall DC Electricals II. General AC Charactertistics III. Power Sequencing
This is the subsection header for the Documentation
Map. These are found under main headers Examples
I. Overall DC electrical A. Absolute Maximum Ratings B. Recommend Operating Conditions C. Output Driver
Public Class Methods
Source
# File lib/origen/specs/documentation.rb, line 51 def initialize(header_info = {}, selection = {}, applicable_devs = [], link = nil) @level = header_info[:level] @section = header_info[:section] @subsection = header_info[:subsection] @interface = selection[:interface] @mode = selection[:mode] @type = selection[:type] @sub_type = selection[:sub_type] @audience = selection[:audience] @applicable_devices = applicable_devs @link = link end
Initialize the Class