public abstract class AbstractStaticContext extends Object implements StaticContext
This class implements those parts of the functionality of a static context that tend to be common to most implementations: simple-valued properties such as base URI and default element namespace; availability of the standard function library; and support for collations.
Modifier and Type | Field and Description |
---|---|
protected boolean |
usingDefaultFunctionLibrary |
Constructor and Description |
---|
AbstractStaticContext() |
Modifier and Type | Method and Description |
---|---|
protected void |
addFunctionLibrary(FunctionLibrary library)
Add a function library to the list of function libraries
|
void |
declareCollation(String name,
StringCollator comparator,
boolean isDefault)
Deprecated.
since 9.6. All collations are now registered at the level of the
Configuration. If this method is called, the effect is (a) the supplied collation
is registered with the configuration, and (b) if isDefault=true, the collation
becomes the default collation for this static context
|
Configuration |
getConfiguration()
Get the system configuration
|
Location |
getContainingLocation()
Get the containing location.
|
DecimalFormatManager |
getDecimalFormatManager()
Get a DecimalFormatManager to resolve the names of decimal formats used in calls
to the format-number() function.
|
String |
getDefaultCollationName()
Get the name of the default collation.
|
String |
getDefaultElementNamespace()
Get the default namespace URI for elements and types
Return NamespaceConstant.NULL (that is, the zero-length string) for the non-namespace
|
String |
getDefaultFunctionNamespace()
Get the default function namespace.
|
FunctionLibrary |
getFunctionLibrary()
Get the function library containing all the in-scope functions available in this static
context.
|
int |
getHostLanguage()
Get the host language (XSLT, XQuery, XPath) used to implement the code in this container
|
KeyManager |
getKeyManager()
Get the KeyManager, containing definitions of keys available for use.
|
PackageData |
getPackageData()
Get data about the unit of compilation (XQuery module, XSLT package) to which this
container belongs
|
ItemType |
getRequiredContextItemType()
Get the required type of the context item.
|
String |
getStaticBaseURI()
Get the Base URI, for resolving any relative URI's used
in the expression.
|
String |
getSystemId()
Get the system ID of the container of the expression.
|
int |
getXPathVersion()
Get the XPath language level supported, as an integer value.
|
boolean |
isInBackwardsCompatibleMode()
Determine whether Backwards Compatible Mode is used
|
void |
issueWarning(String s,
Location locator)
Issue a compile-time warning.
|
XPathContext |
makeEarlyEvaluationContext()
Construct a dynamic context for early evaluation of constant subexpressions
|
RetainedStaticContext |
makeRetainedStaticContext()
Construct a RetainedStaticContext, which extracts information from this StaticContext
to provide the subset of static context information that is potentially needed
during expression evaluation
|
void |
setBackwardsCompatibilityMode(boolean option)
Set XPath 1.0 backwards compatibility mode on or off
|
void |
setBaseURI(String baseURI)
Set the base URI in the static context
|
protected void |
setConfiguration(Configuration config)
Set the Configuration.
|
void |
setContainingLocation(Location location)
Set the containing location, which represents the location of the outermost expression using this
static context (typically, subexpressions will have a nested location that refers to this outer
containing location)
|
void |
setDecimalFormatManager(DecimalFormatManager manager)
Set the DecimalFormatManager used to resolve the names of decimal formats used in calls
to the format-number() function.
|
void |
setDefaultCollationName(String collationName)
Set the name of the default collation for this static context.
|
void |
setDefaultElementNamespace(String uri)
Set the default namespace for elements and types
|
protected void |
setDefaultFunctionLibrary()
Initialize the default function library for XPath.
|
void |
setDefaultFunctionNamespace(String uri)
Set the default function namespace
|
void |
setFunctionLibrary(FunctionLibraryList lib)
Set the function library to be used
|
void |
setPackageData(PackageData packageData)
Set data about the unit of compilation (XQuery module, XSLT package)
|
void |
setSchemaAware(boolean aware)
Say whether this static context is schema-aware
|
void |
setXPathLanguageLevel(int level)
Set the XPath language level supported.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
bindVariable, getImportedSchemaNamespaces, getNamespaceResolver, isImportedSchema
protected void setConfiguration(Configuration config)
config
- the configurationpublic Configuration getConfiguration()
getConfiguration
in interface StaticContext
public void setPackageData(PackageData packageData)
packageData
- the package datapublic PackageData getPackageData()
getPackageData
in interface StaticContext
public void setSchemaAware(boolean aware)
aware
- true if this static context is schema-awarepublic RetainedStaticContext makeRetainedStaticContext()
makeRetainedStaticContext
in interface StaticContext
protected final void setDefaultFunctionLibrary()
protected final void addFunctionLibrary(FunctionLibrary library)
library
- the function library to be addedpublic int getHostLanguage()
Configuration.XPATH
public XPathContext makeEarlyEvaluationContext()
makeEarlyEvaluationContext
in interface StaticContext
public Location getContainingLocation()
StaticContext
getContainingLocation
in interface StaticContext
public void setContainingLocation(Location location)
location
- the location map to be usedpublic void setBaseURI(String baseURI)
baseURI
- the base URI of the expression; the value null is allowed to indicate that the base URI is not available.public String getStaticBaseURI()
getStaticBaseURI
in interface StaticContext
public FunctionLibrary getFunctionLibrary()
getFunctionLibrary
in interface StaticContext
public void setFunctionLibrary(FunctionLibraryList lib)
lib
- the function librarypublic void declareCollation(String name, StringCollator comparator, boolean isDefault)
name
- The name of the collation (technically, a URI)comparator
- The StringCollator used to implement the collating sequenceisDefault
- True if this is to be used as the default collationpublic void setDefaultCollationName(String collationName)
collationName
- the name of the default collationpublic String getDefaultCollationName()
getDefaultCollationName
in interface StaticContext
public void issueWarning(String s, Location locator)
issueWarning
in interface StaticContext
s
- The warning message. This should not contain any prefix such as "Warning".locator
- the location of the construct in question. May be null.public String getSystemId()
getSystemId
in interface StaticContext
public String getDefaultElementNamespace()
getDefaultElementNamespace
in interface StaticContext
public void setDefaultElementNamespace(String uri)
uri
- the namespace to be used for unprefixed element and type names.
The value "" (or NamespaceConstant.NULL) represents the non-namespacepublic void setDefaultFunctionNamespace(String uri)
uri
- the namespace to be used for unprefixed function names.
The value "" (or NamespaceConstant.NULL) represents the non-namespacepublic String getDefaultFunctionNamespace()
getDefaultFunctionNamespace
in interface StaticContext
public void setXPathLanguageLevel(int level)
level
- the XPath language levelpublic int getXPathVersion()
getXPathVersion
in interface StaticContext
public void setBackwardsCompatibilityMode(boolean option)
option
- true if XPath 1.0 compatibility mode is to be set to true;
otherwise falsepublic boolean isInBackwardsCompatibleMode()
isInBackwardsCompatibleMode
in interface StaticContext
public void setDecimalFormatManager(DecimalFormatManager manager)
manager
- the decimal format manager for this static context, or null if no named decimal
formats are available in this environment.public ItemType getRequiredContextItemType()
getRequiredContextItemType
in interface StaticContext
public DecimalFormatManager getDecimalFormatManager()
getDecimalFormatManager
in interface StaticContext
public KeyManager getKeyManager()
getKeyManager
in interface StaticContext
Copyright (c) 2004-2014 Saxonica Limited. All rights reserved.