Class CaptureHistorySpec
java.lang.Object
dev.jcputney.elearning.parser.input.lom.properties.CaptureHistorySpec
- All Implemented Interfaces:
Serializable
Represents the captureHistorySpec complex type.
The following schema snippet specifies its contents:
<xs:complexType name="captureHistorySpec">
<xs:all>
<xs:element name="captureHistory" type="yesNoType" minOccurs="0" maxOccurs="1" />
<xs:element name="captureHistoryDetailed" type="yesNoType" minOccurs="0" maxOccurs="1" />
</xs:all>
</xs:complexType>
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for theCaptureHistorySpecclass.CaptureHistorySpec(YesNoType captureHistory, YesNoType captureHistoryDetailed) Constructs a new instance of theCaptureHistorySpecclass with the specified values. -
Method Summary
Modifier and TypeMethodDescriptionbooleanRetrieves the captureHistory value.Retrieves the detailed capture history flag.inthashCode()voidsetCaptureHistory(YesNoType captureHistory) Sets the capture history flag, which indicates whether capture history should be enabled or not.voidsetCaptureHistoryDetailed(YesNoType captureHistoryDetailed) Sets the detailed capture history flag, specifying whether detailed capture history is enabled or not.
-
Constructor Details
-
CaptureHistorySpec
Constructs a new instance of theCaptureHistorySpecclass with the specified values.- Parameters:
captureHistory- the capture history flag, which indicates whether capture history is enabled or not. The value should be of typeYesNoType.captureHistoryDetailed- the detailed capture history flag, which specifies whether detailed capture history is enabled or not. The value should be of typeYesNoType.
-
CaptureHistorySpec
public CaptureHistorySpec()Default constructor for theCaptureHistorySpecclass.Creates an instance of
CaptureHistorySpecwith no initial values set. This constructor is primarily used when no specific initialization is required or when values will be set manually after object creation.
-
-
Method Details
-
getCaptureHistory
Retrieves the captureHistory value.- Returns:
- the capture history flag, which indicates whether capture history is enabled or not.
-
setCaptureHistory
Sets the capture history flag, which indicates whether capture history should be enabled or not.- Parameters:
captureHistory- the capture history flag, represented as aYesNoType. Acceptable values include "yes", "no", "true", or "false".
-
getCaptureHistoryDetailed
Retrieves the detailed capture history flag.- Returns:
- the detailed capture history flag, indicating whether detailed capture history is enabled or not.
-
setCaptureHistoryDetailed
Sets the detailed capture history flag, specifying whether detailed capture history is enabled or not.- Parameters:
captureHistoryDetailed- the detailed capture history flag, represented as aYesNoType. Acceptable values are "yes", "no", "true", or "false".
-
equals
-
hashCode
public int hashCode()
-