Uses of Interface
org.xml.sax.Attributes
-
Packages that use Attributes 软件包 描述 org.xml.sax 提供核心SAX API。org.xml.sax.ext 提供与符合SAX驱动程序不一定支持的SAX2设施的接口。org.xml.sax.helpers 提供帮助类,包括支持引导基于SAX的应用程序。 -
-
Uses of Attributes in org.xml.sax
Methods in org.xml.sax with parameters of type Attributes Modifier and Type 方法 描述 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 Modifier and Type 接口 描述 interface
Attributes2
SAX2扩展扩充了Attributes
提供的每个属性信息。Classes in org.xml.sax.ext that implement Attributes Modifier and Type Class 描述 class
Attributes2Impl
SAX2扩展助手附加属性信息,实现Attributes2
界面。Methods in org.xml.sax.ext with parameters of type Attributes Modifier and Type 方法 描述 void
Attributes2Impl. setAttributes(Attributes atts)
复制整个Attributes对象。Constructors in org.xml.sax.ext with parameters of type Attributes Constructor 描述 Attributes2Impl(Attributes atts)
复制现有的Attributes或Attributes2对象。 -
Uses of Attributes in org.xml.sax.helpers
Classes in org.xml.sax.helpers that implement Attributes Modifier and Type Class 描述 class
AttributesImpl
属性界面的默认实现。Methods in org.xml.sax.helpers with parameters of type Attributes Modifier and Type 方法 描述 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 Constructor 描述 AttributesImpl(Attributes atts)
复制现有的Attributes对象。
-