Uses of Interface
org.xml.sax.Attributes
-
Packages that use Attributes 软件包 描述 org.xml.sax 提供核心SAX API。org.xml.sax.ext 为SAX2设施提供符合SAX驱动程序不一定支持的接口。org.xml.sax.helpers 提供帮助程序类,包括支持引导基于SAX的应用程序。 -
-
Uses of Attributes in org.xml.sax
Methods in org.xml.sax with parameters of type Attributes 变量和类型 方法 描述 void
ContentHandler. startElement(String uri, String localName, String qName, Attributes atts)
接收元素开头的通知。 -
Uses of Attributes in org.xml.sax.ext
Subinterfaces of Attributes in org.xml.sax.ext 变量和类型 接口 描述 interface
Attributes2
SAX2扩展,用于扩充通过Attributes
提供的每个属性信息。Classes in org.xml.sax.ext that implement Attributes 变量和类型 类 描述 class
Attributes2Impl
SAX2扩展帮助程序用于获取其他属性信息,实现Attributes2
接口。Methods in org.xml.sax.ext with parameters of type Attributes 变量和类型 方法 描述 void
Attributes2Impl. setAttributes(Attributes atts)
复制整个Attributes对象。Constructors in org.xml.sax.ext with parameters of type Attributes 构造器 描述 Attributes2Impl(Attributes atts)
复制现有的Attributes或Attributes2对象。 -
Uses of Attributes in org.xml.sax.helpers
Classes in org.xml.sax.helpers that implement Attributes 变量和类型 类 描述 class
AttributesImpl
Attributes接口的默认实现。Methods in org.xml.sax.helpers with parameters of type Attributes 变量和类型 方法 描述 void
AttributesImpl. setAttributes(Attributes atts)
复制整个Attributes对象。void
DefaultHandler. startElement(String uri, String localName, String qName, Attributes attributes)
接收元素开始的通知。void
XMLFilterImpl. startElement(String uri, String localName, String qName, Attributes atts)
过滤开始元素事件。void
XMLReaderAdapter. startElement(String uri, String localName, String qName, Attributes atts)
调整SAX2启动元素事件。Constructors in org.xml.sax.helpers with parameters of type Attributes 构造器 描述 AttributesImpl(Attributes atts)
复制现有的Attributes对象。
-