org.jdom.Attribute.setName()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(2.4k)|赞(0)|评价(0)|浏览(113)

本文整理了Java中org.jdom.Attribute.setName()方法的一些代码示例,展示了Attribute.setName()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Attribute.setName()方法的具体详情如下:
包路径:org.jdom.Attribute
类名称:Attribute
方法名:setName

Attribute.setName介绍

[英]This sets the local name of the Attribute.
[中]这将设置Attribute的本地名称。

代码示例

代码示例来源:origin: org.dspace/dspace-xmlui-wing

/**
 * Move the old attribute to a new attribute.
 * 
 * @param element
 *            The element
 * @param oldName
 *            The old attribute's name.
 * @param newName
 *            The new attribute's name.
 */
private void moveAttribute(Element element, String oldName, String newName) {
  Attribute attribute = element.getAttribute(oldName);
  if (attribute != null)
  {
    attribute.setName(newName);
  }
}

代码示例来源:origin: org.jdom/jdom-legacy

/**
 * This will create a new <code>Attribute</code> with the
 * specified (local) name, value, and type, and in the provided
 * <code>{@link Namespace}</code>.
 *
 * @param name <code>String</code> name of <code>Attribute</code>.
 * @param value <code>String</code> value for new attribute.
 * @param type <code>int</code> type for new attribute.
 * @param namespace <code>Namespace</code> namespace for new attribute.
 * @throws IllegalNameException if the given name is illegal as an
 *         attribute name or if if the new namespace is the default
 *         namespace. Attributes cannot be in a default namespace.
 * @throws IllegalDataException if the given attribute value is
 *         illegal character data (as determined by
 *         {@link org.jdom.Verifier#checkCharacterData}) or
 *         if the given attribute type is not one of the
 *         supported types.
 */
public Attribute(final String name, final String value, final int type, final Namespace namespace) {
  setName(name);
  setValue(value);
  setAttributeType(type);
  setNamespace(namespace);
}

代码示例来源:origin: stackoverflow.com

String yourXMLFragment = "...";

AttributeStatementBuilder attributeStatementBuilder = 
  (AttributeStatementBuilder) builderFactory.getBuilder(AttributeStatement.DEFAULT_ELEMENT_NAME);
AttributeStatement attributeStatement = attributeStatementBuilder.buildObject();

AttributeBuilder attributeBuilder = 
  (AttributeBuilder) builderFactory.getBuilder(Attribute.DEFAULT_ELEMENT_NAME);
Attribute attr = attributeBuilder.buildObject();
attr.setName("yourAttributeName");

XSAnyBuilder sb2 = (XSAnyBuilder) builderFactory.getBuilder(XSAny.TYPE_NAME);
XSAny attrAny = sb2.buildObject(AttributeValue.DEFAULT_ELEMENT_NAME, XSAny.TYPE_NAME);
attrAny.setTextContent(yourXMLFragment.trim());

attr.getAttributeValues().add(attrAny);
attributeStatement.getAttributes().add(attr);

相关文章