本文整理汇总了Java中org.xml.sax.helpers.AttributesImpl.removeAttribute方法的典型用法代码示例。如果您正苦于以下问题:Java AttributesImpl.removeAttribute方法的具体用法?Java AttributesImpl.removeAttribute怎么用?Java AttributesImpl.removeAttribute使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.xml.sax.helpers.AttributesImpl
的用法示例。
在下文中一共展示了AttributesImpl.removeAttribute方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testcase09
import org.xml.sax.helpers.AttributesImpl; //导入方法依赖的package包/类
/**
* Javadoc says getLocalName returns null if the index if out of range.
*/
@Test
public void testcase09() {
AttributesImpl attr = new AttributesImpl();
attr.addAttribute(CAR_URI, CAR_LOCALNAME, CAR_QNAME, CAR_TYPE, CAR_VALUE);
attr.addAttribute(JEEP_URI, JEEP_LOCALNAME, JEEP_QNAME, JEEP_TYPE,
JEEP_VALUE);
attr.removeAttribute(1);
assertNull(attr.getLocalName(1));
}
示例2: testcase10
import org.xml.sax.helpers.AttributesImpl; //导入方法依赖的package包/类
/**
* Javadoc says java.lang.ArrayIndexOutOfBoundsException is thrown When the
* supplied index does not point to an attribute in the list.
*/
@Test(expectedExceptions = ArrayIndexOutOfBoundsException.class)
public void testcase10() {
AttributesImpl attr = new AttributesImpl();
attr.addAttribute(CAR_URI, CAR_LOCALNAME, CAR_QNAME, CAR_TYPE, CAR_VALUE);
attr.addAttribute(JEEP_URI, JEEP_LOCALNAME, JEEP_QNAME, JEEP_TYPE,
JEEP_VALUE);
attr.removeAttribute(1);
attr.removeAttribute(1);
}