本文整理了Java中org.apache.xmlbeans.XmlNCName.set()
方法的一些代码示例,展示了XmlNCName.set()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XmlNCName.set()
方法的具体详情如下:
包路径:org.apache.xmlbeans.XmlNCName
类名称:XmlNCName
方法名:set
暂无
代码示例来源:origin: org.n52.security/52n-security-xml-saml2
/**
* Sets (as xml) ith "AssertionIDRef" element
*/
public void xsetAssertionIDRefArray(int i, org.apache.xmlbeans.XmlNCName assertionIDRef)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_element_user(ASSERTIONIDREF$0, i);
if (target == null)
{
throw new IndexOutOfBoundsException();
}
target.set(assertionIDRef);
}
}
代码示例来源:origin: org.n52.security/52n-security-xml-saml2
/**
* Sets (as xml) ith "AssertionIDRef" element
*/
public void xsetAssertionIDRefArray(int i, org.apache.xmlbeans.XmlNCName assertionIDRef)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_element_user(ASSERTIONIDREF$0, i);
if (target == null)
{
throw new IndexOutOfBoundsException();
}
target.set(assertionIDRef);
}
}
代码示例来源:origin: org.n52.security/52n-security-xb
/**
* Sets (as xml) ith "AssertionIDRef" element
*/
public void xsetAssertionIDRefArray(int i, org.apache.xmlbeans.XmlNCName assertionIDRef)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_element_user(ASSERTIONIDREF$0, i);
if (target == null)
{
throw new IndexOutOfBoundsException();
}
target.set(assertionIDRef);
}
}
代码示例来源:origin: org.n52.security/52n-security-xb
/**
* Sets (as xml) ith "AssertionIDRef" element
*/
public void xsetAssertionIDRefArray(int i, org.apache.xmlbeans.XmlNCName assertionIDRef)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_element_user(ASSERTIONIDREF$0, i);
if (target == null)
{
throw new IndexOutOfBoundsException();
}
target.set(assertionIDRef);
}
}
代码示例来源:origin: net.open-esb.core/wsdl
/**
* Sets (as xml) the "messageLabel" attribute
*/
public void xsetMessageLabel(org.apache.xmlbeans.XmlNCName messageLabel)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(MESSAGELABEL$2);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(MESSAGELABEL$2);
}
target.set(messageLabel);
}
}
代码示例来源:origin: org.n52.security/52n-security-xml-saml2
/**
* Sets (as xml) the "InResponseTo" attribute
*/
public void xsetInResponseTo(org.apache.xmlbeans.XmlNCName inResponseTo)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(INRESPONSETO$6);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(INRESPONSETO$6);
}
target.set(inResponseTo);
}
}
代码示例来源:origin: net.open-esb.core/wsdl
/**
* Sets (as xml) the "name" attribute
*/
public void xsetName(org.apache.xmlbeans.XmlNCName name)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(NAME$4);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(NAME$4);
}
target.set(name);
}
}
代码示例来源:origin: net.open-esb.core/wsdl
/**
* Sets (as xml) the "name" attribute
*/
public void xsetName(org.apache.xmlbeans.XmlNCName name)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(NAME$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(NAME$0);
}
target.set(name);
}
}
代码示例来源:origin: org.n52.security/52n-security-xml-saml2
/**
* Sets (as xml) the "InResponseTo" attribute
*/
public void xsetInResponseTo(org.apache.xmlbeans.XmlNCName inResponseTo)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(INRESPONSETO$10);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(INRESPONSETO$10);
}
target.set(inResponseTo);
}
}
代码示例来源:origin: org.n52.security/52n-security-xml-secconfig
/**
* Sets (as xml) the "initMethod" attribute
*/
public void xsetInitMethod(org.apache.xmlbeans.XmlNCName initMethod)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(INITMETHOD$12);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(INITMETHOD$12);
}
target.set(initMethod);
}
}
代码示例来源:origin: org.n52.security/52n-security-xb
/**
* Sets (as xml) the "class" attribute
*/
public void xsetClass1(org.apache.xmlbeans.XmlNCName class1)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(CLASS1$2);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(CLASS1$2);
}
target.set(class1);
}
}
代码示例来源:origin: org.n52.sensorweb/52n-xml-sweCommon-v20
/**
* Sets (as xml) the "name" attribute
*/
public void xsetName(org.apache.xmlbeans.XmlNCName name)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(NAME$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(NAME$0);
}
target.set(name);
}
}
}
代码示例来源:origin: org.wso2.bpel/ode-bpel-schemas
/**
* Sets (as xml) the "port" attribute
*/
public void xsetPort(org.apache.xmlbeans.XmlNCName port)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(PORT$2);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(PORT$2);
}
target.set(port);
}
}
}
代码示例来源:origin: org.n52.sensorweb/52n-xml-sensorML-v20
/**
* Sets (as xml) the "name" attribute
*/
public void xsetName(org.apache.xmlbeans.XmlNCName name)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(NAME$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(NAME$0);
}
target.set(name);
}
}
}
代码示例来源:origin: org.n52.sensorweb/52n-xml-sensorML-v20
/**
* Sets (as xml) the "name" attribute
*/
public void xsetName(org.apache.xmlbeans.XmlNCName name)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(NAME$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(NAME$0);
}
target.set(name);
}
}
}
代码示例来源:origin: org.n52.sensorweb/52n-xml-sensorML-v20
/**
* Sets (as xml) the "name" attribute
*/
public void xsetName(org.apache.xmlbeans.XmlNCName name)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(NAME$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(NAME$0);
}
target.set(name);
}
}
}
代码示例来源:origin: org.n52.sensorweb/52n-xml-sensorML-v20
/**
* Sets (as xml) the "name" attribute
*/
public void xsetName(org.apache.xmlbeans.XmlNCName name)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(NAME$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(NAME$0);
}
target.set(name);
}
}
}
代码示例来源:origin: org.n52.sensorweb/52n-xml-sensorML-v20
/**
* Sets (as xml) the "name" attribute
*/
public void xsetName(org.apache.xmlbeans.XmlNCName name)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(NAME$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(NAME$0);
}
target.set(name);
}
}
}
代码示例来源:origin: org.n52.security/52n-security-xml-saml2
/**
* Sets (as xml) the "AssertionIDRef" element
*/
public void xsetAssertionIDRef(org.apache.xmlbeans.XmlNCName assertionIDRef)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_element_user(ASSERTIONIDREF$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_element_user(ASSERTIONIDREF$0);
}
target.set(assertionIDRef);
}
}
}
代码示例来源:origin: org.n52.sensorweb/52n-xml-sensorML-v20
/**
* Sets (as xml) the "name" attribute
*/
public void xsetName(org.apache.xmlbeans.XmlNCName name)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(NAME$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(NAME$0);
}
target.set(name);
}
}
}
内容来源于网络,如有侵权,请联系作者删除!