本文整理汇总了Java中javax.xml.stream.XMLEventFactory.setLocation方法的典型用法代码示例。如果您正苦于以下问题:Java XMLEventFactory.setLocation方法的具体用法?Java XMLEventFactory.setLocation怎么用?Java XMLEventFactory.setLocation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.xml.stream.XMLEventFactory
的用法示例。
在下文中一共展示了XMLEventFactory.setLocation方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testSetLocation
import javax.xml.stream.XMLEventFactory; //导入方法依赖的package包/类
@Test
public void testSetLocation() {
XMLEventFactory factory = XMLEventFactory.newInstance();
Location loc = new MyLocation();
factory.setLocation(loc);
XMLEvent event = factory.createComment("some comment");
Assert.assertEquals(event.getLocation().getLineNumber(), 15);
}
示例2: assignIdToElement
import javax.xml.stream.XMLEventFactory; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
protected StartElement assignIdToElement(StartElement element)
{
List<Attribute> attrs = new ArrayList<Attribute>();
Attribute idAttr = null;
for (Iterator<Attribute> i = element.getAttributes(); i.hasNext();)
{
Attribute attr = i.next();
if (ID_ATTR_QNAME.equals(attr.getName()))
idAttr = attr;
attrs.add(attr);
}
if (null == idAttr)
{
String id = Integer.toString(++lastId);
int len = id.length();
if (6 < len)
throw new IndexOutOfBoundsException("Too many TOC entries: " + id + ", cannot allocate an id");
id = idBuf.replace(9 - len, 9, id).toString();
XMLEventFactory eventFactory = getXMLEventFactory();
idAttr = eventFactory.createAttribute(ID_ATTR_QNAME, id);
attrs.add(idAttr);
eventFactory.setLocation(element.getLocation());
element = eventFactory.createStartElement(
element.getName(),
attrs.iterator(),
element.getNamespaces());
eventFactory.setLocation(null);
}
return element;
}
示例3: get
import javax.xml.stream.XMLEventFactory; //导入方法依赖的package包/类
public XMLEventFactory get() {
XMLEventFactory eventFactory = super.get();
eventFactory.setLocation(null);
return eventFactory;
}