Class StageSpec
java.lang.Object
dev.jcputney.elearning.parser.input.lom.properties.StageSpec
- All Implemented Interfaces:
Serializable
Represents the stageSpec complex type.
The following schema snippet specifies its contents:
<xs:complexType name="stageSpec">
<xs:all>
<xs:element name="width" type="xs:nonNegativeInteger" minOccurs="0" maxOccurs="1" />
<xs:element name="height" type="xs:nonNegativeInteger" minOccurs="0" maxOccurs="1" />
<xs:element name="fullscreen" type="yesNoType" minOccurs="0" maxOccurs="1" />
</xs:all>
</xs:complexType>
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanRetrieves the fullscreen setting associated with the current stage specification.Retrieves the height associated with the current stage specification.getWidth()Retrieves the width associated with the current stage specification.inthashCode()voidsetFullscreen(YesNoType fullscreen) Updates the fullscreen setting for the current stage specification.voidsetHeight(BigInteger height) Sets the height for the current stage specification.voidsetWidth(BigInteger width) Sets the width for the current stage specification.
-
Constructor Details
-
StageSpec
public StageSpec()Default constructor for the StageSpec class.Initializes a new instance of the StageSpec class with no specific configuration.
-
-
Method Details
-
getWidth
Retrieves the width associated with the current stage specification.- Returns:
- the width as a
BigInteger, representing a non-negative integer.
-
setWidth
Sets the width for the current stage specification.- Parameters:
width- the width to be set as aBigInteger, representing a non-negative integer.
-
getHeight
Retrieves the height associated with the current stage specification.- Returns:
- the height as a
BigInteger, representing a non-negative integer.
-
setHeight
Sets the height for the current stage specification.- Parameters:
height- the height to be set as aBigInteger, representing a non-negative integer.
-
getFullscreen
Retrieves the fullscreen setting associated with the current stage specification.- Returns:
- the fullscreen setting as a
YesNoType, which can represent values like "yes", "no", "true", or "false".
-
setFullscreen
Updates the fullscreen setting for the current stage specification.- Parameters:
fullscreen- the fullscreen setting to be applied, represented as aYesNoType. Possible values include "yes", "no", "true", or "false".
-
equals
-
hashCode
public int hashCode()
-