SAXTransformerFactory Class

Definition

This class extends TransformerFactory to provide SAX-specific factory methods.

[Android.Runtime.Register("javax/xml/transform/sax/SAXTransformerFactory", DoNotGenerateAcw=true)]
public abstract class SAXTransformerFactory : Javax.Xml.Transform.TransformerFactory
[<Android.Runtime.Register("javax/xml/transform/sax/SAXTransformerFactory", DoNotGenerateAcw=true)>]
type SAXTransformerFactory = class
    inherit TransformerFactory
Inheritance
SAXTransformerFactory
Attributes

Remarks

This class extends TransformerFactory to provide SAX-specific factory methods. It provides two types of ContentHandlers, one for creating Transformers, the other for creating Templates objects.

If an application wants to set the ErrorHandler or EntityResolver for an XMLReader used during a transformation, it should use a URIResolver to return the SAXSource which provides (with getXMLReader) a reference to the XMLReader.

Java documentation for javax.xml.transform.sax.SAXTransformerFactory.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Constructors

SAXTransformerFactory()

The default constructor is protected on purpose.

SAXTransformerFactory(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

Fields

Feature

If javax.xml.transform.TransformerFactory#getFeature returns true when passed this value as an argument, the TransformerFactory returned from javax.xml.transform.TransformerFactory#newInstance may be safely cast to a SAXTransformerFactory.

FeatureXmlfilter

If javax.xml.transform.TransformerFactory#getFeature returns true when passed this value as an argument, the #newXMLFilter(Source src) and #newXMLFilter(Templates templates) methods are supported.

Properties

Class

Returns the runtime class of this Object.

(Inherited from Object)
ErrorListener

Get the error event handler for the TransformerFactory.

(Inherited from TransformerFactory)
Handle

The handle to the underlying Android instance.

(Inherited from Object)
JniIdentityHashCode (Inherited from Object)
JniPeerMembers
PeerReference (Inherited from Object)
ThresholdClass

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

ThresholdType

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

URIResolver

Get the object that is used by default during the transformation to resolve URIs used in document(), xsl:import, or xsl:include.

(Inherited from TransformerFactory)

Methods

Clone()

Creates and returns a copy of this object.

(Inherited from Object)
Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
GetAssociatedStylesheet(ISource, String, String, String)

Get the stylesheet specification(s) associated with the XML Source document via the xml-stylesheet processing instruction that match the given criteria.

(Inherited from TransformerFactory)
GetAttribute(String)

Allows the user to retrieve specific attributes on the underlying implementation.

(Inherited from TransformerFactory)
GetFeature(String)

Look up the value of a feature.

(Inherited from TransformerFactory)
GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
NewTemplates(ISource)

Process the Source into a Templates object, which is a a compiled representation of the source.

(Inherited from TransformerFactory)
NewTemplatesHandler()

Get a TemplatesHandler object that can process SAX ContentHandler events into a Templates object.

NewTransformer()

Create a new Transformer that performs a copy of the Source to the Result.

(Inherited from TransformerFactory)
NewTransformer(ISource)

Process the Source into a TransformerObject.

(Inherited from TransformerFactory)
NewTransformerHandler()

Get a TransformerHandler object that can process SAX ContentHandler events into a Result.

NewTransformerHandler(ISource)

Get a TransformerHandler object that can process SAX ContentHandler events into a Result, based on the transformation instructions specified by the argument.

NewTransformerHandler(ITemplates)

Get a TransformerHandler object that can process SAX ContentHandler events into a Result, based on the Templates argument.

NewXMLFilter(ISource)

Create an XMLFilter that uses the given Source as the transformation instructions.

NewXMLFilter(ITemplates)

Create an XMLFilter, based on the Templates argument.

Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
SetAttribute(String, Object)

Allows the user to set specific attributes on the underlying implementation.

(Inherited from TransformerFactory)
SetFeature(String, Boolean)

Set a feature for this TransformerFactory and Transformers or Templates created by this factory.

(Inherited from TransformerFactory)
SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
ToArray<T>() (Inherited from Object)
ToString()

Returns a string representation of the object.

(Inherited from Object)
UnregisterFromRuntime() (Inherited from Object)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)

Events

Error (Inherited from TransformerFactory)
FatalError (Inherited from TransformerFactory)
Warning (Inherited from TransformerFactory)

Explicit Interface Implementations

IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)

Applies to