/**
* Constructor.
*/
ElementImpl(final QName name, final boolean isStartElement, Iterator namespaces, final Location location) {
super(isStartElement ? START_ELEMENT : END_ELEMENT, location);
fName = name;
if (namespaces != null && namespaces.hasNext()) {
fNamespaces = new ArrayList();
do {
Namespace ns = (Namespace) namespaces.next();
fNamespaces.add(ns);
}
while (namespaces.hasNext());
}
else {
fNamespaces = Collections.EMPTY_LIST;
}
}
ElementImpl.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:SplitCharater
作者:
评论列表
文章目录