org.apache.xmlbeans.SimpleValue.setQNameValue()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(7.2k)|赞(0)|评价(0)|浏览(69)

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

SimpleValue.setQNameValue介绍

[英]Sets the value as a QName.
[中]将该值设置为QName。

代码示例

代码示例来源:origin: org.apache.xmlbeans/xmlbeans

public void setQNameValue(QName obj)
{
  ((SimpleValue)underlyingXmlObject()).setQNameValue(obj);
}

代码示例来源:origin: com.github.pjfanning/xmlbeans

public void setQNameValue(QName obj)
{
  ((SimpleValue)underlyingXmlObject()).setQNameValue(obj);
}

代码示例来源:origin: org.apache.xmlbeans/com.springsource.org.apache.xmlbeans

public void setQNameValue(QName obj)
{
  ((SimpleValue)underlyingXmlObject()).setQNameValue(obj);
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-csw-v202

/**
 * Inserts the value as the ith "ElementName" element
 */
public void insertElementName(int i, javax.xml.namespace.QName elementName)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(ELEMENTNAME$2, i);
    target.setQNameValue(elementName);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-csw-v202

/**
 * Inserts the value as the ith "TypeName" element
 */
public void insertTypeName(int i, javax.xml.namespace.QName typeName)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(TYPENAME$0, i);
    target.setQNameValue(typeName);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-csw-v202

/**
 * Appends the value as the last "TypeName" element
 */
public void addTypeName(javax.xml.namespace.QName typeName)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(TYPENAME$0);
    target.setQNameValue(typeName);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-wfs-v110

/**
 * Inserts the value as the ith "TypeName" element
 */
public void insertTypeName(int i, javax.xml.namespace.QName typeName)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(TYPENAME$0, i);
    target.setQNameValue(typeName);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-wfs-v20

/**
 * Inserts the value as the ith "TypeName" element
 */
public void insertTypeName(int i, javax.xml.namespace.QName typeName)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(TYPENAME$0, i);
    target.setQNameValue(typeName);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-sos-v100

/**
 * Inserts the value as the ith "TemporalOperand" element
 */
public void insertTemporalOperand(int i, javax.xml.namespace.QName temporalOperand)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(TEMPORALOPERAND$0, i);
    target.setQNameValue(temporalOperand);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-sos-v100

/**
 * Inserts the value as the ith "GeometryOperand" element
 */
public void insertGeometryOperand(int i, javax.xml.namespace.QName geometryOperand)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(GEOMETRYOPERAND$0, i);
    target.setQNameValue(geometryOperand);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-wfs-v20

/**
 * Appends the value as the last "ReturnFeatureType" element
 */
public void addReturnFeatureType(javax.xml.namespace.QName returnFeatureType)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(RETURNFEATURETYPE$2);
    target.setQNameValue(returnFeatureType);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-sos-v100

/**
 * Appends the value as the last "TemporalOperand" element
 */
public void addTemporalOperand(javax.xml.namespace.QName temporalOperand)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(TEMPORALOPERAND$0);
    target.setQNameValue(temporalOperand);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-sos-v100

/**
 * Appends the value as the last "GeometryOperand" element
 */
public void addGeometryOperand(javax.xml.namespace.QName geometryOperand)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(GEOMETRYOPERAND$0);
    target.setQNameValue(geometryOperand);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-wfs-v20

/**
 * Appends the value as the last "TypeName" element
 */
public void addTypeName(javax.xml.namespace.QName typeName)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(TYPENAME$0);
    target.setQNameValue(typeName);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-sos-v100

/**
 * Inserts the value as the ith "resultModel" element
 */
public void insertResultModel(int i, javax.xml.namespace.QName resultModel)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(RESULTMODEL$12, i);
    target.setQNameValue(resultModel);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-wsrf-v12

/**
 * Inserts the value as the ith "ResourceProperty" element
 */
public void insertResourceProperty(int i, javax.xml.namespace.QName resourceProperty)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = 
      (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(RESOURCEPROPERTY$0, i);
    target.setQNameValue(resourceProperty);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-wsrf-v12

/**
 * Appends the value as the last "ResourceProperty" element
 */
public void addResourceProperty(javax.xml.namespace.QName resourceProperty)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(RESOURCEPROPERTY$0);
    target.setQNameValue(resourceProperty);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-sos-v100

/**
 * Appends the value as the last "resultModel" element
 */
public void addResultModel(javax.xml.namespace.QName resultModel)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(RESULTMODEL$12);
    target.setQNameValue(resultModel);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-csw-v202

/**
 * Appends the value as the last "ElementName" element
 */
public void addElementName(javax.xml.namespace.QName elementName)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(ELEMENTNAME$2);
    target.setQNameValue(elementName);
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-wfs-v110

/**
 * Appends the value as the last "TypeName" element
 */
public void addTypeName(javax.xml.namespace.QName typeName)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(TYPENAME$0);
    target.setQNameValue(typeName);
  }
}

相关文章

微信公众号

最新文章

更多

SimpleValue类方法