gpt4 book ai didi

org.eclipse.persistence.oxm.mappings.XMLCompositeObjectMapping.getReferenceDescriptor()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-24 10:33:05 27 4
gpt4 key购买 nike

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

XMLCompositeObjectMapping.getReferenceDescriptor介绍

暂无

代码示例

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

protected ClassDescriptor getReferenceDescriptor(Class theClass, AbstractSession session) {
  if ((getReferenceDescriptor() != null) && getReferenceDescriptor().getJavaClass().equals(theClass)) {
    return getReferenceDescriptor();
  }
  ClassDescriptor subDescriptor = session.getDescriptor(theClass);
  if (subDescriptor == null && getKeepAsElementPolicy() != UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) {
    throw DescriptorException.noSubClassMatch(theClass, this);
  } else {
    return subDescriptor;
  }
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

protected ClassDescriptor getReferenceDescriptor(Class theClass, AbstractSession session) {
  if ((getReferenceDescriptor() != null) && getReferenceDescriptor().getJavaClass().equals(theClass)) {
    return getReferenceDescriptor();
  }
  ClassDescriptor subDescriptor = session.getDescriptor(theClass);
  if (subDescriptor == null && getKeepAsElementPolicy() != UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) {
    throw DescriptorException.noSubClassMatch(theClass, this);
  } else {
    return subDescriptor;
  }
}

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

protected ClassDescriptor getReferenceDescriptor(Class theClass, AbstractSession session) {
  if ((getReferenceDescriptor() != null) && getReferenceDescriptor().getJavaClass().equals(theClass)) {
    return getReferenceDescriptor();
  }
  ClassDescriptor subDescriptor = session.getDescriptor(theClass);
  if (subDescriptor == null && getKeepAsElementPolicy() != UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) {
    throw DescriptorException.noSubClassMatch(theClass, this);
  } else {
    return subDescriptor;
  }
}

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

ClassDescriptor desc;
if(null == attributeValue) {
  desc =  this.getReferenceDescriptor();
} else {
  desc =  this.getReferenceDescriptor(attributeValue.getClass(), session);
  objectBuilder.buildIntoNestedRow(record, attributeValue, session, (XMLDescriptor)getReferenceDescriptor(), (XMLField) getField());
}else{

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

ClassDescriptor desc;
if(null == attributeValue) {
  desc =  this.getReferenceDescriptor();
} else {
  desc =  this.getReferenceDescriptor(attributeValue.getClass(), session);
  objectBuilder.buildIntoNestedRow(record, attributeValue, session, (XMLDescriptor)getReferenceDescriptor(), (XMLField) getField());
}else{

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

protected AbstractRecord buildCompositeRowForDescriptor(ClassDescriptor classDesc, Object attributeValue, AbstractSession session, XMLRecord parentRow, WriteType writeType) {
   XMLObjectBuilder objectBuilder = (XMLObjectBuilder) classDesc.getObjectBuilder();
   XMLRecord child = (XMLRecord) objectBuilder.createRecordFor(attributeValue, (XMLField) getField(), parentRow, this);
   child.setNamespaceResolver(parentRow.getNamespaceResolver());
   child.setSession(session);
   objectBuilder.buildIntoNestedRow(child, attributeValue, session, (XMLDescriptor)getReferenceDescriptor(), (XMLField) getField());
   return child;
}

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

protected AbstractRecord buildCompositeRowForDescriptor(ClassDescriptor classDesc, Object attributeValue, AbstractSession session, XMLRecord parentRow, WriteType writeType) {
   XMLObjectBuilder objectBuilder = (XMLObjectBuilder) classDesc.getObjectBuilder();
      XMLRecord child = (XMLRecord) objectBuilder.createRecordFor(attributeValue, (XMLField) getField(), parentRow, this);            
   child.setNamespaceResolver(parentRow.getNamespaceResolver());
   child.setSession(session);
   objectBuilder.buildIntoNestedRow(child, attributeValue, session, (XMLDescriptor)getReferenceDescriptor(), (XMLField) getField());
   return child;
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

ClassDescriptor desc =  this.getReferenceDescriptor(attributeValue.getClass(), session);
if(desc != null){
  XMLObjectBuilder objectBuilder = (XMLObjectBuilder)desc.getObjectBuilder();

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * INTERNAL:
 */
public boolean shouldAddXsiType(XMLRecord record, ClassDescriptor aDescriptor) {
  XMLDescriptor xmlDescriptor = (XMLDescriptor) aDescriptor;
  if ((getReferenceDescriptor() == null) && (xmlDescriptor.getSchemaReference() != null)) {
    if (aDescriptor.hasInheritance()) {
      XMLField indicatorField = (XMLField) aDescriptor.getInheritancePolicy().getClassIndicatorField();
      if ((indicatorField.getLastXPathFragment().getNamespaceURI() != null) //
          && indicatorField.getLastXPathFragment().getNamespaceURI().equals(XMLConstants.SCHEMA_INSTANCE_URL) //
          && indicatorField.getLastXPathFragment().getLocalName().equals(XMLConstants.SCHEMA_TYPE_ATTRIBUTE)) {
        return false;
      }
    }
    XMLSchemaReference xmlRef = xmlDescriptor.getSchemaReference();
    if ((xmlRef.getType() == XMLSchemaReference.COMPLEX_TYPE) && xmlRef.isGlobalDefinition()) {
      QName ctxQName = xmlRef.getSchemaContextAsQName(xmlDescriptor.getNamespaceResolver());
      QName leafType = ((XMLField) getField()).getLeafElementType();
      if ((leafType == null) || (!ctxQName.equals(record.getLeafElementType()))) {
        return true;
      }
    }
  }
  return false;
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

ClassDescriptor aDescriptor =  getReferenceDescriptor((DOMRecord) nestedRow);
      aDescriptor = this.getReferenceDescriptor(classValue, executionSession);
    } else {

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

ClassDescriptor aDescriptor =  getReferenceDescriptor((DOMRecord) nestedRow);
      aDescriptor = this.getReferenceDescriptor(classValue, executionSession);
    } else {

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

ClassDescriptor aDescriptor =  getReferenceDescriptor((DOMRecord) nestedRow);
      aDescriptor = this.getReferenceDescriptor(classValue, executionSession);
    } else {

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

@Override
protected Object buildCompositeRow(Object attributeValue, AbstractSession session, AbstractRecord databaseRow, WriteType writeType) {
  XMLDescriptor xmlReferenceDescriptor = null;
  try{
    xmlReferenceDescriptor = (XMLDescriptor) getReferenceDescriptor(attributeValue, session);
  }catch(Exception e){
    //do nothing
  }
  XMLField xmlFld = (XMLField) getField();
  if (xmlFld.hasLastXPathFragment() && xmlFld.getLastXPathFragment().hasLeafElementType()) {
    XMLRecord xmlRec = (XMLRecord) databaseRow;
    xmlRec.setLeafElementType(xmlFld.getLastXPathFragment().getLeafElementType());
  }
  XMLRecord parent = (XMLRecord) databaseRow;
  if (xmlReferenceDescriptor != null) {
    return buildCompositeRowForDescriptor(xmlReferenceDescriptor, attributeValue, session, parent, writeType);
  } else {
    if (attributeValue instanceof Element && getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) {
      return new DOMRecord((Element) attributeValue);
    }else{
      Node newNode = XPathEngine.getInstance().create((XMLField)getField(), parent.getDOM(), attributeValue, session);
      DOMRecord newRow = new DOMRecord(newNode);
      return newRow;
    }
  }
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

XMLDescriptor descriptor = (XMLDescriptor)xmlCompositeObjectMapping.getReferenceDescriptor();
if(descriptor == null || descriptor.hasInheritance()){
  descriptor = (XMLDescriptor)session.getDescriptor(objectValue.getClass());
  if ((xmlCompositeObjectMapping.getReferenceDescriptor() == null) && (descriptor.getSchemaReference() != null)) {
    addTypeAttributeIfNeeded(descriptor, xmlCompositeObjectMapping, marshalRecord);

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

@Override
protected Object buildCompositeRow(Object attributeValue, AbstractSession session, AbstractRecord databaseRow, WriteType writeType) {
  XMLDescriptor xmlReferenceDescriptor = null;
  try{
    xmlReferenceDescriptor = (XMLDescriptor) getReferenceDescriptor(attributeValue, session);
  }catch(Exception e){
    //do nothing
  }
  XMLField xmlFld = (XMLField) getField();
  if (xmlFld.hasLastXPathFragment() && xmlFld.getLastXPathFragment().hasLeafElementType()) {
    XMLRecord xmlRec = (XMLRecord) databaseRow;
    xmlRec.setLeafElementType(xmlFld.getLastXPathFragment().getLeafElementType());
  }
  XMLRecord parent = (XMLRecord) databaseRow;
  if (xmlReferenceDescriptor != null) {
    return buildCompositeRowForDescriptor(xmlReferenceDescriptor, attributeValue, session, parent, writeType);
      } else {
    if (attributeValue instanceof Element && getKeepAsElementPolicy() == UnmarshalKeepAsElementPolicy.KEEP_UNKNOWN_AS_ELEMENT) {
      return new DOMRecord((Element) attributeValue);
    }else{
      Node newNode = XPathEngine.getInstance().create((XMLField)getField(), parent.getDOM(), attributeValue, session);
      DOMRecord newRow = new DOMRecord(newNode);
      return newRow;
    }
  }
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

public UnmarshalRecord buildSelfRecord(UnmarshalRecord unmarshalRecord, Attributes atts) {
  try {
    XMLDescriptor xmlDescriptor = (XMLDescriptor)xmlCompositeObjectMapping.getReferenceDescriptor();
    if (null == xmlDescriptor) {
      xmlDescriptor = findReferenceDescriptor(null, unmarshalRecord, atts, xmlCompositeObjectMapping,xmlCompositeObjectMapping.getKeepAsElementPolicy());

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

unmarshalRecord.removeNullCapableValue(this);
XMLDescriptor xmlDescriptor = (XMLDescriptor)xmlCompositeObjectMapping.getReferenceDescriptor();
if (null == xmlDescriptor) {
  xmlDescriptor = findReferenceDescriptor(xPathFragment, unmarshalRecord, atts, xmlCompositeObjectMapping,xmlCompositeObjectMapping.getKeepAsElementPolicy());

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

protected Object buildCompositeRow(Object attributeValue, AbstractSession session, AbstractRecord databaseRow) {
  XMLDescriptor xmlReferenceDescriptor = null;
  try{
    xmlReferenceDescriptor = (XMLDescriptor) getReferenceDescriptor(attributeValue, session);
  }catch(Exception e){

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