Most visited

Recently visited

Added in API level 1

Locator2Impl

public class Locator2Impl
extends LocatorImpl implements Locator2

java.lang.Object
   ↳ org.xml.sax.helpers.LocatorImpl
     ↳ org.xml.sax.ext.Locator2Impl


SAX2扩展助手用于保存其他实体信息,实现 Locator2接口。

This module, both source code and documentation, is in the Public Domain, and comes with NO WARRANTY.

这不是仅有核心的SAX2发行版的一部分。

Summary

Public constructors

Locator2Impl()

构造一个新的空Locator2Impl对象。

Locator2Impl(Locator locator)

复制现有的定位器或Locator2对象。

Public methods

String getEncoding()

返回编码属性的当前值。

String getXMLVersion()

返回version属性的当前值。

void setEncoding(String encoding)

指定编码属性的当前值。

void setXMLVersion(String version)

分配版本属性的当前值。

Inherited methods

From class org.xml.sax.helpers.LocatorImpl
From class java.lang.Object
From interface org.xml.sax.Locator
From interface org.xml.sax.ext.Locator2

Public constructors

Locator2Impl

Added in API level 1
Locator2Impl ()

构造一个新的空Locator2Impl对象。 这通常不会有用,因为此类的主要目的是为现有定位器创建快照。

Locator2Impl

Added in API level 1
Locator2Impl (Locator locator)

复制现有的定位器或Locator2对象。 如果该对象实现Locator2,则会复制编码版本字符串的值,否则它们将设置为null

Parameters
locator Locator: The existing Locator object.

Public methods

getEncoding

Added in API level 1
String getEncoding ()

返回编码属性的当前值。

Returns
String the current value of the encoding property.

也可以看看:

getXMLVersion

Added in API level 1
String getXMLVersion ()

返回version属性的当前值。

Returns
String the current value of the version property.

也可以看看:

setEncoding

Added in API level 1
void setEncoding (String encoding)

指定编码属性的当前值。

Parameters
encoding String: the new "encoding" value

也可以看看:

setXMLVersion

Added in API level 1
void setXMLVersion (String version)

分配版本属性的当前值。

Parameters
version String: the new "version" value

也可以看看:

Hooray!