Added in API level 1

Locator2Impl

open class Locator2Impl : LocatorImpl, Locator2
kotlin.Any
   ↳ org.xml.sax.helpers.LocatorImpl
   ↳ org.xml.sax.ext.Locator2Impl

SAX2 extension helper for holding additional Entity information, implementing the Locator2 interface. This module, both source code and documentation, is in the Public Domain, and comes with NO WARRANTY.

This is not part of core-only SAX2 distributions.

Summary

Public constructors

Construct a new, empty Locator2Impl object.

Locator2Impl(locator: Locator!)

Copy an existing Locator or Locator2 object.

Public methods
open String!

Returns the current value of the encoding property.

open String!

Returns the current value of the version property.

open Unit
setEncoding(encoding: String!)

Assigns the current value of the encoding property.

open Unit
setXMLVersion(version: String!)

Assigns the current value of the version property.

Inherited functions

Public constructors

Locator2Impl

Added in API level 1
Locator2Impl()

Construct a new, empty Locator2Impl object. This will not normally be useful, since the main purpose of this class is to make a snapshot of an existing Locator.

Locator2Impl

Added in API level 1
Locator2Impl(locator: Locator!)

Copy an existing Locator or Locator2 object. If the object implements Locator2, values of the encoding and versionstrings are copied, otherwise they set to null.

Parameters
locator Locator!: The existing Locator object.

Public methods

getEncoding

Added in API level 1
open fun getEncoding(): String!

Returns the current value of the encoding property.

Return
String! the current value of the encoding property.

See Also

getXMLVersion

Added in API level 1
open fun getXMLVersion(): String!

Returns the current value of the version property.

Return
String! the current value of the version property.

See Also

setEncoding

Added in API level 1
open fun setEncoding(encoding: String!): Unit

Assigns the current value of the encoding property.

Parameters
encoding String!: the new "encoding" value

See Also

setXMLVersion

Added in API level 1
open fun setXMLVersion(version: String!): Unit

Assigns the current value of the version property.

Parameters
version String!: the new "version" value

See Also