Uses of Interface
dev.jcputney.elearning.parser.input.scorm12.adl.prerequisite.PrerequisiteExpression
Packages that use PrerequisiteExpression
Package
Description
-
Uses of PrerequisiteExpression in dev.jcputney.elearning.parser.input.scorm12.adl
Methods in dev.jcputney.elearning.parser.input.scorm12.adl that return PrerequisiteExpressionModifier and TypeMethodDescriptionScorm12Prerequisites.getParsedExpression()Parses the prerequisite value and returns a structured expression tree. -
Uses of PrerequisiteExpression in dev.jcputney.elearning.parser.input.scorm12.adl.prerequisite
Classes in dev.jcputney.elearning.parser.input.scorm12.adl.prerequisite that implement PrerequisiteExpressionModifier and TypeClassDescriptionfinal recordRepresents an AND expression in the AICC prerequisite script.final recordRepresents a reference to an item identifier in the AICC prerequisite script.final recordRepresents a NOT expression in the AICC prerequisite script.final recordRepresents an OR expression in the AICC prerequisite script.final recordRepresents a parse error when the prerequisite expression cannot be parsed.Methods in dev.jcputney.elearning.parser.input.scorm12.adl.prerequisite that return PrerequisiteExpressionModifier and TypeMethodDescriptionNotExpression.operand()Returns the value of theoperandrecord component.static PrerequisiteExpressionParses an AICC prerequisite script expression.Methods in dev.jcputney.elearning.parser.input.scorm12.adl.prerequisite that return types with arguments of type PrerequisiteExpressionModifier and TypeMethodDescriptionAndExpression.operands()Returns the value of theoperandsrecord component.OrExpression.operands()Returns the value of theoperandsrecord component.Constructors in dev.jcputney.elearning.parser.input.scorm12.adl.prerequisite with parameters of type PrerequisiteExpressionModifierConstructorDescriptionNotExpression(PrerequisiteExpression operand) Creates an instance of aNotExpressionrecord class.Constructor parameters in dev.jcputney.elearning.parser.input.scorm12.adl.prerequisite with type arguments of type PrerequisiteExpressionModifierConstructorDescriptionAndExpression(List<PrerequisiteExpression> operands) Creates an AND expression with the given operands.OrExpression(List<PrerequisiteExpression> operands) Creates an OR expression with the given operands.