java.lang.Object
dev.jcputney.elearning.parser.input.lom.properties.AppearanceSpec
All Implemented Interfaces:
Serializable

public final class AppearanceSpec extends Object implements Serializable

Represents the appearanceSpec complex type.

The following schema snippet specifies its contents:


 <xs:complexType name="appearanceSpec">
   <xs:all>
     <xs:element name="displayStage" type="displayStageSpec" minOccurs="0" maxOccurs="1" />
     <xs:element name="courseStructureWidth" type="xs:nonNegativeInteger" minOccurs="0" maxOccurs="1" />
   </xs:all>
 </xs:complexType>
 
See Also:
  • Constructor Details

    • AppearanceSpec

      public AppearanceSpec()
      Default constructor for the AppearanceSpec class.

      Initializes a new instance of the AppearanceSpec class. This constructor does not perform any operations and is intended for use in creating an empty AppearanceSpec object.

  • Method Details

    • getDisplayStage

      public DisplayStageSpec getDisplayStage()
      Retrieves the display stage specification for the appearance configuration.
      Returns:
      the display stage specification represented by an instance of DisplayStageSpec, or null if not set.
    • setDisplayStage

      public void setDisplayStage(DisplayStageSpec displayStage)
      Sets the display stage specification for the appearance configuration.
      Parameters:
      displayStage - the new display stage specification to set, represented by an instance of DisplayStageSpec
    • getCourseStructureWidth

      public BigInteger getCourseStructureWidth()
      Retrieves the course structure width for the appearance configuration.
      Returns:
      the course structure width represented as a BigInteger, or null if not set.
    • setCourseStructureWidth

      public void setCourseStructureWidth(BigInteger courseStructureWidth)
      Sets the course structure width for the appearance configuration.
      Parameters:
      courseStructureWidth - the new course structure width to set, represented as a BigInteger
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object