AttributeListImpl Constructors

Definition

Overloads

AttributeListImpl()
Obsolete.

Create an empty attribute list.

AttributeListImpl(IAttributeList)
Obsolete.

Construct a persistent copy of an existing attribute list.

AttributeListImpl(IntPtr, JniHandleOwnership)

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

AttributeListImpl()

Caution

deprecated

Create an empty attribute list.

[Android.Runtime.Register(".ctor", "()V", "")]
[System.Obsolete("deprecated")]
public AttributeListImpl ();
Attributes

Remarks

Create an empty attribute list.

This constructor is most useful for parser writers, who will use it to create a single, reusable attribute list that can be reset with the clear method between elements.

Java documentation for org.xml.sax.helpers.AttributeListImpl.AttributeListImpl().

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.

See also

  • <xref:Org.Xml.Sax.Helpers.AttributeListImpl.AddAttribute(System.String%2c+System.String%2c+System.String)>
  • Clear()

Applies to

AttributeListImpl(IAttributeList)

Caution

deprecated

Construct a persistent copy of an existing attribute list.

[Android.Runtime.Register(".ctor", "(Lorg/xml/sax/AttributeList;)V", "")]
[System.Obsolete("deprecated")]
public AttributeListImpl (Org.Xml.Sax.IAttributeList? atts);
[<Android.Runtime.Register(".ctor", "(Lorg/xml/sax/AttributeList;)V", "")>]
[<System.Obsolete("deprecated")>]
new Org.Xml.Sax.Helpers.AttributeListImpl : Org.Xml.Sax.IAttributeList -> Org.Xml.Sax.Helpers.AttributeListImpl

Parameters

atts
IAttributeList

The attribute list to copy

Attributes

Remarks

Construct a persistent copy of an existing attribute list.

This constructor is most useful for application writers, who will use it to create a persistent copy of an existing attribute list.

Java documentation for org.xml.sax.helpers.AttributeListImpl.AttributeListImpl(org.xml.sax.AttributeList).

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.

See also

  • <xref:Org.Xml.Sax.IDocumentHandler.StartElement(System.String%2c+Org.Xml.Sax.IAttributeList)>

Applies to

AttributeListImpl(IntPtr, JniHandleOwnership)

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

protected AttributeListImpl (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Org.Xml.Sax.Helpers.AttributeListImpl : nativeint * Android.Runtime.JniHandleOwnership -> Org.Xml.Sax.Helpers.AttributeListImpl

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

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.

Applies to