Package net.sf.saxon.expr
Interface Container
-
- All Superinterfaces:
javax.xml.transform.SourceLocator
- All Known Implementing Classes:
AbsentExtensionElement
,Adjust
,Aggregate
,AnalyzeString
,ApplyImports
,ApplyTemplates
,ArithmeticExpression
,ArithmeticExpression.DateAndDuration
,ArithmeticExpression.DateDifference
,ArithmeticExpression.DurationAddition
,ArithmeticExpression.DurationDivision
,ArithmeticExpression.DurationMultiplication
,ArithmeticExpression.NumericArithmetic
,Assign
,Assignation
,AtomicSequenceConverter
,Atomizer
,Attribute
,AttributeSet
,Available
,AxisExpression
,BaseURI
,BinaryExpression
,Block
,BooleanExpression
,BooleanFn
,CallTemplate
,CardinalityChecker
,CastableExpression
,CastExpression
,Choose
,CodepointEqual
,CollatingFunction
,Collection
,Comment
,Compare
,CompareToIntegerConstant
,CompileTimeFunction
,Component
,ComputedElement
,ComputedExpression
,Concat
,Contains
,ContextItemExpression
,Copy
,CopyOf
,Current
,CurrentDateTime
,CurrentGroup
,CurrentItemExpression
,Data
,DateTimeConstructor
,DeepEqual
,DefaultCollation
,DistinctValues
,Doc
,Doctype
,Document
,DocumentInstr
,DocumentSorter
,EagerLetExpression
,ElementCreator
,Error
,ErrorExpression
,EscapeURI
,Evaluate
,Existence
,ExpressionParser.TemporaryContainer
,ExtensionFunctionCall
,ExtensionInstruction
,FilterExpression
,FirstItemExpression
,FixedAttribute
,FixedElement
,ForceCase
,ForEach
,ForEachGroup
,ForExpression
,FormatDate
,FormatNumber2
,FunctionCall
,GeneralComparison
,GeneralComparison10
,GeneralVariable
,GlobalParam
,GlobalVariable
,Id
,IdentityComparison
,IDPattern
,Idref
,IfExpression
,IndexOf
,InScopePrefixes
,Insert
,InstanceOfExpression
,Instruction
,IntegerRangeTest
,IsLastExpression
,ItemChecker
,KeyDefinition
,KeyFn
,KeyPattern
,Lang
,Last
,LazyExpression
,LetExpression
,LiteralResultElement
,LocalParam
,LocalVariable
,LocalVariableReference
,LocationPathPattern
,Matches
,Message
,Minimax
,NamePart
,Namespace
,NamespaceForPrefix
,NextMatch
,Nilled
,NodeTestPattern
,NormalizeSpace
,NormalizeUnicode
,NumberFn
,NumberInstruction
,NumericPromoter
,ParentNodeConstructor
,ParentNodeExpression
,Parse
,PathExpression
,Pattern
,Position
,PositionRange
,Procedure
,ProcessingInstruction
,QNameFn
,QuantifiedExpression
,QuerySimpleContentConstructor
,RangeExpression
,RegexGroup
,Remove
,Replace
,ResolveQName
,ResolveURI
,ResultDocument
,Reverse
,Reverser
,Root
,RootExpression
,Rounding
,SaxonAssign
,SaxonCallTemplate
,SaxonCollation
,SaxonDoctype
,SaxonEntityRef
,SaxonImportQuery
,SaxonScript
,SaxonWhile
,Serialize
,SimpleContentConstructor
,SimpleExpression
,SimpleMappingExpression
,SimpleNodeConstructor
,SingleNodeExpression
,SingletonAtomizer
,SingletonComparison
,SliceExpression
,SortExpression
,SQLClose
,SQLColumn
,SQLColumn.ColumnInstruction
,SQLConnect
,SQLDelete
,SQLInsert
,SQLQuery
,SQLUpdate
,StaticBaseURI
,StringFn
,StringJoin
,StringLength
,StyleElement
,Subsequence
,Substring
,SuppliedParameterReference
,SystemFunction
,SystemProperty
,TailCallLoop
,TailExpression
,Template
,Tokenize
,Trace
,TraceExpression
,TraceInstruction
,TraceWrapper
,Translate
,TreatFn
,TupleExpression
,TupleSorter
,UnaryExpression
,Unicode
,UnionPattern
,Unordered
,UnparsedEntity
,UnparsedText
,UntypedAtomicConverter
,UseAttributeSets
,UserFunction
,UserFunctionCall
,ValueComparison
,ValueOf
,VariableReference
,VennExpression
,While
,WithParam
,XPathFunctionCall
,XQueryExpression
,XQueryFunction
,XSLAnalyzeString
,XSLApplyImports
,XSLApplyTemplates
,XSLAttribute
,XSLAttributeSet
,XSLCallTemplate
,XSLCharacterMap
,XSLChoose
,XSLComment
,XSLCopy
,XSLCopyOf
,XSLDecimalFormat
,XSLDocument
,XSLElement
,XSLFallback
,XSLForEach
,XSLForEachGroup
,XSLFunction
,XSLGeneralIncorporate
,XSLGeneralVariable
,XSLIf
,XSLImport
,XSLImportSchema
,XSLInclude
,XSLKey
,XSLMatchingSubstring
,XSLMessage
,XSLNamespace
,XSLNamespaceAlias
,XSLNextMatch
,XSLNumber
,XSLOtherwise
,XSLOutput
,XSLOutputCharacter
,XSLParam
,XSLPerformSort
,XSLPreserveSpace
,XSLProcessingInstruction
,XSLResultDocument
,XSLSequence
,XSLSort
,XSLStringConstructor
,XSLStylesheet
,XSLTemplate
,XSLText
,XSLValueOf
,XSLVariable
,XSLVariableDeclaration
,XSLWhen
,XSLWithParam
public interface Container extends javax.xml.transform.SourceLocator
A Container is something that can act as the parent of an expression. It is either an expression that can have subexpressions (which rules out Values), or an object such as a function, a template, or an attribute set that is not itself an expression but that can contain expressions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Executable
getExecutable()
Get the Executable (representing a complete stylesheet or query) of which this Container forms partint
getHostLanguage()
Get the host language (XSLT, XQuery, XPath) used to implement the code in this containerLocationProvider
getLocationProvider()
Get the LocationProvider allowing location identifiers to be resolved.boolean
replaceSubExpression(Expression original, Expression replacement)
Replace one subexpression by a replacement subexpression
-
-
-
Method Detail
-
getExecutable
Executable getExecutable()
Get the Executable (representing a complete stylesheet or query) of which this Container forms part
-
getLocationProvider
LocationProvider getLocationProvider()
Get the LocationProvider allowing location identifiers to be resolved.
-
getHostLanguage
int getHostLanguage()
Get the host language (XSLT, XQuery, XPath) used to implement the code in this container- Returns:
- typically
Configuration.XSLT
orConfiguration.XQUERY
-
replaceSubExpression
boolean replaceSubExpression(Expression original, Expression replacement)
Replace one subexpression by a replacement subexpression- Parameters:
original
- the original subexpressionreplacement
- the replacement subexpression- Returns:
- true if the original subexpression was found
-
-