gpt4 book ai didi

org.apache.xmlbeans.XmlIDREF类的使用及代码示例

转载 作者:知者 更新时间:2024-03-20 14:03:40 28 4
gpt4 key购买 nike

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

XmlIDREF介绍

[英]Corresponds to the XML Schema xs:IDREF type.

When validated, IDREF values must match an ID value that is present within the document. This rule is only verified when a whole document is validated at once.

Convertible to a String.
[中]对应于XML模式xs:IDREF类型。
验证后,IDREF值必须与文档中存在的ID值匹配。只有在一次验证整个文档时,才能验证此规则。
可转换为字符串。

代码示例

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

/**
 * Sets (as xml) the "targetElement" attribute
 */
public void xsetTargetElement(org.apache.xmlbeans.XmlIDREF targetElement)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(TARGETELEMENT$42);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(TARGETELEMENT$42);
    }
    target.set(targetElement);
  }
}

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

/**
 * Sets (as xml) the "targetElement" attribute
 */
public void xsetTargetElement(org.apache.xmlbeans.XmlIDREF targetElement)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(TARGETELEMENT$42);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(TARGETELEMENT$42);
    }
    target.set(targetElement);
  }
}

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

/**
 * Sets (as xml) the "targetElement" attribute
 */
public void xsetTargetElement(org.apache.xmlbeans.XmlIDREF targetElement)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(TARGETELEMENT$42);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(TARGETELEMENT$42);
    }
    target.set(targetElement);
  }
}

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

/**
 * Sets (as xml) the "ref" attribute
 */
public void xsetRef(org.apache.xmlbeans.XmlIDREF ref)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(REF$2);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(REF$2);
    }
    target.set(ref);
  }
}

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

/**
 * Sets (as xml) the "ref" attribute
 */
public void xsetRef(org.apache.xmlbeans.XmlIDREF ref)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(REF$2);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(REF$2);
    }
    target.set(ref);
  }
}

代码示例来源:origin: SmartDataAnalytics/DL-Learner

/**
 * Sets (as xml) the "local" attribute
 */
public void xsetLocal(org.apache.xmlbeans.XmlIDREF local)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(LOCAL$2);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(LOCAL$2);
    }
    target.set(local);
  }
}

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

/**
 * Sets (as xml) the "targetElement" attribute
 */
public void xsetTargetElement(org.apache.xmlbeans.XmlIDREF targetElement)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(TARGETELEMENT$42);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(TARGETELEMENT$42);
    }
    target.set(targetElement);
  }
}

代码示例来源:origin: org.n52.security/52n-security-xml-secconfig

/**
 * Sets (as xml) the "idRef" attribute
 */
public void xsetIdRef(org.apache.xmlbeans.XmlIDREF idRef)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(IDREF$10);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(IDREF$10);
    }
    target.set(idRef);
  }
}

代码示例来源:origin: org.n52.security/52n-security-xb

/**
 * Sets (as xml) the "idRef" attribute
 */
public void xsetIdRef(org.apache.xmlbeans.XmlIDREF idRef)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(IDREF$10);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(IDREF$10);
    }
    target.set(idRef);
  }
}

代码示例来源:origin: org.n52.security/52n-security-xb

/**
 * Sets (as xml) the "providerRef" attribute
 */
public void xsetProviderRef(org.apache.xmlbeans.XmlIDREF providerRef)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(PROVIDERREF$6);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(PROVIDERREF$6);
    }
    target.set(providerRef);
  }
}

代码示例来源:origin: org.n52.security/52n-security-xml-secconfig

/**
 * Sets (as xml) the "providerRef" attribute
 */
public void xsetProviderRef(org.apache.xmlbeans.XmlIDREF providerRef)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(PROVIDERREF$6);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(PROVIDERREF$6);
    }
    target.set(providerRef);
  }
}

代码示例来源:origin: org.n52.security/52n-security-xml-secconfig

/**
 * Sets (as xml) the "factoryIdRef" attribute
 */
public void xsetFactoryIdRef(org.apache.xmlbeans.XmlIDREF factoryIdRef)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(FACTORYIDREF$14);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(FACTORYIDREF$14);
    }
    target.set(factoryIdRef);
  }
}

代码示例来源:origin: org.n52.security/52n-security-xb

/**
 * Sets (as xml) the "factoryIdRef" attribute
 */
public void xsetFactoryIdRef(org.apache.xmlbeans.XmlIDREF factoryIdRef)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(FACTORYIDREF$14);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(FACTORYIDREF$14);
    }
    target.set(factoryIdRef);
  }
}

代码示例来源:origin: SmartDataAnalytics/DL-Learner

/**
 * Sets (as xml) the "local" attribute
 */
public void xsetLocal(org.apache.xmlbeans.XmlIDREF local)
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.XmlIDREF target = null;
    target = (org.apache.xmlbeans.XmlIDREF)get_store().find_attribute_user(LOCAL$2);
    if (target == null)
    {
      target = (org.apache.xmlbeans.XmlIDREF)get_store().add_attribute_user(LOCAL$2);
    }
    target.set(local);
  }
}

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com