Uses of Interface
de.gebit.integrity.dsl.VariableOrConstantEntity
-
-
Uses of VariableOrConstantEntity in de.gebit.integrity.dsl
Subinterfaces of VariableOrConstantEntity in de.gebit.integrity.dsl Modifier and Type Interface Description interfaceConstantEntityA representation of the model object 'Constant Entity'.interfaceVariableEntityA representation of the model object 'Variable Entity'.Methods in de.gebit.integrity.dsl that return VariableOrConstantEntity Modifier and Type Method Description VariableOrConstantEntityDslFactory. createVariableOrConstantEntity()Returns a new object of class 'Variable Or Constant Entity'.VariableOrConstantEntitySuiteParameter. getName()Returns the value of the 'Name' reference.VariableOrConstantEntityVariable. getName()Returns the value of the 'Name' reference.Methods in de.gebit.integrity.dsl with parameters of type VariableOrConstantEntity Modifier and Type Method Description voidSuiteParameter. setName(VariableOrConstantEntity value)Sets the value of the 'Name' reference.voidVariable. setName(VariableOrConstantEntity value)Sets the value of the 'Name' reference. -
Uses of VariableOrConstantEntity in de.gebit.integrity.dsl.impl
Classes in de.gebit.integrity.dsl.impl that implement VariableOrConstantEntity Modifier and Type Class Description classConstantEntityImplAn implementation of the model object 'Constant Entity'.classVariableEntityImplAn implementation of the model object 'Variable Entity'.classVariableOrConstantEntityImplAn implementation of the model object 'Variable Or Constant Entity'.Fields in de.gebit.integrity.dsl.impl declared as VariableOrConstantEntity Modifier and Type Field Description protected VariableOrConstantEntitySuiteParameterImpl. nameThe cached value of the 'Name' reference.protected VariableOrConstantEntityVariableImpl. nameThe cached value of the 'Name' reference.Methods in de.gebit.integrity.dsl.impl that return VariableOrConstantEntity Modifier and Type Method Description VariableOrConstantEntitySuiteParameterImpl. basicGetName()VariableOrConstantEntityVariableImpl. basicGetName()VariableOrConstantEntityDslFactoryImpl. createVariableOrConstantEntity()VariableOrConstantEntitySuiteParameterImpl. getName()VariableOrConstantEntityVariableImpl. getName()Methods in de.gebit.integrity.dsl.impl with parameters of type VariableOrConstantEntity Modifier and Type Method Description voidSuiteParameterImpl. setName(VariableOrConstantEntity newName)voidVariableImpl. setName(VariableOrConstantEntity newName) -
Uses of VariableOrConstantEntity in de.gebit.integrity.dsl.util
Methods in de.gebit.integrity.dsl.util with parameters of type VariableOrConstantEntity Modifier and Type Method Description TDslSwitch. caseVariableOrConstantEntity(VariableOrConstantEntity object)Returns the result of interpreting the object as an instance of 'Variable Or Constant Entity'. -
Uses of VariableOrConstantEntity in de.gebit.integrity.parameter.resolving
Methods in de.gebit.integrity.parameter.resolving with parameters of type VariableOrConstantEntity Modifier and Type Method Description ObjectDefaultParameterResolver. resolveStatically(VariableOrConstantEntity anEntity, VariantDefinition aVariant)ObjectParameterResolver. resolveStatically(VariableOrConstantEntity anEntity, VariantDefinition aVariant)Resolves a variable (recursively, if necessary) to its actual value. -
Uses of VariableOrConstantEntity in de.gebit.integrity.parameter.variables
Methods in de.gebit.integrity.parameter.variables with parameters of type VariableOrConstantEntity Modifier and Type Method Description ObjectVariableManager. get(VariableOrConstantEntity anEntity)Gets a value for a specific variable.booleanVariableManager. isDefined(VariableOrConstantEntity aVariable)Checks whether a specific variable has a defined value.voidVariableManager. set(VariableOrConstantEntity anEntity, Object aValue)Sets a value for a specific variable.voidVariableOrConstantEntityInitialValueDefinitionCallback. triggerDefinition(VariableOrConstantEntity anEntity)When called, the definition of the givenVariableOrConstantEntityshould be performed.voidVariableManager. unset(VariableOrConstantEntity anEntity)Unsets the specific variable or constant. -
Uses of VariableOrConstantEntity in de.gebit.integrity.runner
Fields in de.gebit.integrity.runner with type parameters of type VariableOrConstantEntity Modifier and Type Field Description protected Map<String,VariableOrConstantEntity>TestModel. variableAndConstantMapVariable/constant names -> Entities.protected Map<VariableOrConstantEntity,String>TestModel. variableAndConstantReverseMapThe reverse ofTestModel.variableAndConstantMap.Methods in de.gebit.integrity.runner that return VariableOrConstantEntity Modifier and Type Method Description VariableOrConstantEntityTestModel. getVariableOrConstantByName(String aFullyQualifiedName)Resolves a fully qualified variable/constant name to the actual entity.Methods in de.gebit.integrity.runner with parameters of type VariableOrConstantEntity Modifier and Type Method Description protected voidDefaultTestRunner. defineVariable(VariableOrConstantEntity anEntity, Object anInitialValue, SuiteDefinition aSuite)Defines a variable.StringTestModel. getFullyQualifiedVariableOrConstantName(VariableOrConstantEntity anEntity)Returns the fully-qualified name of a variable/constant entity.protected voidDefaultTestRunner. setVariableValue(VariableOrConstantEntity anEntity, Object aValue, boolean aDoSendUpdateFlag)Sets the value of a variable.protected voidDefaultTestRunner. setVariableValueConverted(VariableOrConstantEntity anEntity, ValueOrEnumValueOrOperationCollection aValue, boolean aDoSendUpdateFlag)Sets the value of a variable.protected voidDefaultTestRunner. undefineVariable(VariableOrConstantEntity anEntity)Undefines a variable (= clears its value, which is NOT exactly the same as setting it to null).protected voidDefaultTestRunner. unsetVariableValue(VariableOrConstantEntity anEntity, boolean aDoSendUpdateFlag)Unsets the value of a variable. -
Uses of VariableOrConstantEntity in de.gebit.integrity.runner.forking
Methods in de.gebit.integrity.runner.forking with parameters of type VariableOrConstantEntity Modifier and Type Method Description voidFork. unsetVariableValue(VariableOrConstantEntity aVariable)Unsets a variables' value.voidFork. updateVariableValue(VariableOrConstantEntity aVariable, Object aValue)Updates a variable value. -
Uses of VariableOrConstantEntity in de.gebit.integrity.runner.results.call
Methods in de.gebit.integrity.runner.results.call that return VariableOrConstantEntity Modifier and Type Method Description VariableOrConstantEntityCallResult.UpdatedVariable. getTargetVariable()Constructors in de.gebit.integrity.runner.results.call with parameters of type VariableOrConstantEntity Constructor Description UpdatedVariable(VariableOrConstantEntity aTargetVariable, String aParameterName, Object aValue)Creates a new instance. -
Uses of VariableOrConstantEntity in de.gebit.integrity.runner.variables
Fields in de.gebit.integrity.runner.variables with type parameters of type VariableOrConstantEntity Modifier and Type Field Description protected Map<VariableOrConstantEntity,Object>DefaultVariableManager. variableMapThe map used to store variables.Methods in de.gebit.integrity.runner.variables with parameters of type VariableOrConstantEntity Modifier and Type Method Description ObjectDefaultVariableManager. get(VariableOrConstantEntity anEntity)booleanDefaultVariableManager. isDefined(VariableOrConstantEntity anEntity)protected voidDefaultVariableManager. performLazyDefinitionIfNecessary(VariableOrConstantEntity anEntity)Checks whether a givenVariableOrConstantEntityis already defined in our map.voidDefaultVariableManager. set(VariableOrConstantEntity anEntity, Object aValue)protected voidDefaultVariableManager. set(VariableOrConstantEntity anEntity, Object aValue, boolean aSuppressTraceLogFlag)Internal variant ofDefaultVariableManager.set(VariableOrConstantEntity, Object).voidDefaultVariableManager. unset(VariableOrConstantEntity anEntity) -
Uses of VariableOrConstantEntity in de.gebit.integrity.utils
Methods in de.gebit.integrity.utils that return VariableOrConstantEntity Modifier and Type Method Description static VariableOrConstantEntityIntegrityDSLUtil. extractVariableOrConstantEntity(ValueOrEnumValueOrOperation anInput)Attempts to extract aVariableOrConstantEntityfrom the providedValueOrEnumValueOrOperation.Methods in de.gebit.integrity.utils with parameters of type VariableOrConstantEntity Modifier and Type Method Description static ValueOrEnumValueOrOperationCollectionIntegrityDSLUtil. getInitialValueForVariableOrConstantEntity(VariableOrConstantEntity anEntity, VariantDefinition aVariant)Determines the initial value to use for the givenVariableOrConstantEntity.static StringIntegrityDSLUtil. getQualifiedVariableEntityName(VariableOrConstantEntity aVariable, boolean aQualifyLocalVariables)Returns the fully qualified name of the givenVariableOrConstantEntity.static booleanIntegrityDSLUtil. isGlobalVariableOrConstant(VariableOrConstantEntity anEntity)Checks whether the given variable/constant entity is defined in a global (package) context.
-