Package net.sf.saxon.instruct
Class FixedAttribute
java.lang.Object
net.sf.saxon.expr.ComputedExpression
net.sf.saxon.instruct.Instruction
net.sf.saxon.instruct.SimpleNodeConstructor
net.sf.saxon.instruct.FixedAttribute
- All Implemented Interfaces:
Serializable
,SourceLocator
,Container
,Expression
,TailCallReturner
,InstructionInfoProvider
An instruction derived from an xsl:attribute element in stylesheet, or from
an attribute constructor in XQuery. This version deals only with attributes
whose name is known at compile time. It is also used for attributes of
literal result elements. The value of the attribute is in general computed
at run-time.
- See Also:
-
Field Summary
Fields inherited from class net.sf.saxon.instruct.SimpleNodeConstructor
select
Fields inherited from class net.sf.saxon.expr.ComputedExpression
locationId, staticProperties
Fields inherited from interface net.sf.saxon.expr.Expression
EVALUATE_METHOD, ITERATE_METHOD, PROCESS_METHOD
-
Constructor Summary
ConstructorsConstructorDescriptionFixedAttribute
(int nameCode, int validationAction, SimpleType schemaType, int annotation) Construct an Attribute instruction -
Method Summary
Modifier and TypeMethodDescriptionvoid
checkPermittedContents
(SchemaType parentType, StaticContext env, boolean whole) Check that any elements and attributes constructed or returned by this expression are acceptable in the content model of a given complex type.void
display
(int level, PrintStream out, Configuration config) Display this instruction as an expression, for diagnosticsevaluateItem
(XPathContext context) Evaluate as an expression.int
evaluateNameCode
(XPathContext context) int
Determine the static cardinality of the expression.Get InstructionInfo for this expressionint
Get the name of this instruction (return 'xsl:attribute')Get the item type of the items returned by evaluating this instructionint
void
localTypeCheck
(StaticContext env, ItemType contextItemType) processLeavingTail
(XPathContext context) Process this instructionvoid
Indicate that the attribute value contains no special characters that might need escapingvoid
Indicate that two attributes with the same name are not acceptable.void
setSelect
(Expression select, Configuration config) Set the expression defining the value of the attribute.Methods inherited from class net.sf.saxon.instruct.SimpleNodeConstructor
checkContent, computeSpecialProperties, createsNewNodes, expandChildren, getSelect, iterate, iterateSubExpressions, optimize, promoteInst, replaceSubExpression, simplify, typeCheck
Methods inherited from class net.sf.saxon.instruct.Instruction
appendItem, assembleParams, assembleTunnelParams, computeCardinality, dynamicError, evaluateAsString, getImplementationMethod, getSourceLocator, isXSLT, process, promote
Methods inherited from class net.sf.saxon.expr.ComputedExpression
adoptChildExpression, computeDependencies, computeStaticProperties, doPromotion, dynamicError, effectiveBooleanValue, getColumnNumber, getConstructType, getDependencies, getExecutable, getHostLanguage, getIntrinsicDependencies, getLineNumber, getLocationId, getLocationProvider, getParentExpression, getPublicId, getSlotsUsed, getSpecialProperties, getSystemId, hasBadParentPointer, markTailFunctionCalls, resetStaticProperties, setLocationId, setParentExpression, setParentExpression, suppressValidation, typeError
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface javax.xml.transform.SourceLocator
getColumnNumber, getLineNumber, getPublicId, getSystemId
-
Constructor Details
-
FixedAttribute
Construct an Attribute instruction- Parameters:
nameCode
- Represents the attribute nameannotation
- Integer code identifying the type named in thetype
attribute of the instruction - zero if the attribute was not present
-
-
Method Details
-
getInstructionNameCode
public int getInstructionNameCode()Get the name of this instruction (return 'xsl:attribute')- Overrides:
getInstructionNameCode
in classInstruction
-
setRejectDuplicates
public void setRejectDuplicates()Indicate that two attributes with the same name are not acceptable. (This option is set in XQuery, but not in XSLT) -
setNoSpecialChars
public void setNoSpecialChars()Indicate that the attribute value contains no special characters that might need escaping -
setSelect
Set the expression defining the value of the attribute. If this is a constant, and if validation against a schema type was requested, the validation is done immediately.- Overrides:
setSelect
in classSimpleNodeConstructor
- Parameters:
select
- The expression defining the content of the attributeconfig
-- Throws:
StaticError
- if the expression is a constant, and validation is requested, and the constant doesn't match the required type.
-
getInstructionInfo
Description copied from class:ComputedExpression
Get InstructionInfo for this expression- Specified by:
getInstructionInfo
in interfaceInstructionInfoProvider
- Overrides:
getInstructionInfo
in classInstruction
-
getItemType
Description copied from class:Instruction
Get the item type of the items returned by evaluating this instruction- Specified by:
getItemType
in interfaceExpression
- Overrides:
getItemType
in classInstruction
- Parameters:
th
-- Returns:
- the static item type of the instruction
-
getCardinality
public int getCardinality()Description copied from class:ComputedExpression
Determine the static cardinality of the expression. This establishes how many items there will be in the result of the expression, at compile time (i.e., without actually evaluating the result.- Specified by:
getCardinality
in interfaceExpression
- Overrides:
getCardinality
in classComputedExpression
- Returns:
- one of the values Cardinality.ONE_OR_MORE, Cardinality.ZERO_OR_MORE, Cardinality.EXACTLY_ONE, Cardinality.ZERO_OR_ONE, Cardinality.EMPTY. This default implementation returns ZERO_OR_MORE (which effectively gives no information).
-
getValidationAction
public int getValidationAction() -
localTypeCheck
- Specified by:
localTypeCheck
in classSimpleNodeConstructor
-
evaluateNameCode
- Overrides:
evaluateNameCode
in classSimpleNodeConstructor
-
checkPermittedContents
public void checkPermittedContents(SchemaType parentType, StaticContext env, boolean whole) throws XPathException Check that any elements and attributes constructed or returned by this expression are acceptable in the content model of a given complex type. It's always OK to say yes, since the check will be repeated at run-time. The process of checking element and attribute constructors against the content model of a complex type also registers the type of content expected of those constructors, so the static validation can continue recursively.- Specified by:
checkPermittedContents
in interfaceExpression
- Overrides:
checkPermittedContents
in classComputedExpression
- Parameters:
parentType
- The schema typeenv
- the static contextwhole
- true if this expression is expected to make the whole content of the type, false if it is expected to make up only a part- Throws:
XPathException
- if the expression doesn't match the required content type
-
processLeavingTail
Process this instruction- Specified by:
processLeavingTail
in interfaceTailCallReturner
- Specified by:
processLeavingTail
in classInstruction
- Parameters:
context
- the dynamic context of the transformation- Returns:
- a TailCall to be executed by the caller, always null for this instruction
- Throws:
XPathException
-
evaluateItem
Description copied from class:SimpleNodeConstructor
Evaluate as an expression. We rely on the fact that when these instructions are generated by XQuery, there will always be a valueExpression to evaluate the content- Specified by:
evaluateItem
in interfaceExpression
- Overrides:
evaluateItem
in classSimpleNodeConstructor
- Parameters:
context
- The context in which the expression is to be evaluated- Returns:
- the node or atomic value that results from evaluating the expression; or null to indicate that the result is an empty sequence
- Throws:
XPathException
- if any dynamic error occurs evaluating the expression
-
display
Display this instruction as an expression, for diagnostics- Specified by:
display
in interfaceExpression
- Overrides:
display
in classSimpleNodeConstructor
- Parameters:
level
- indentation level for this expressionout
- Output destinationconfig
-
-