gpt4 book ai didi

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

转载 作者:知者 更新时间:2024-03-19 01:30:40 26 4
gpt4 key购买 nike

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

XMLChoiceCollectionMapping.addChoiceElementMapping介绍

暂无

代码示例

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

public void addChoiceElement(XMLField field, String elementTypeName) {
  this.fieldToClassNameMappings.put(field, elementTypeName);
  addChoiceElementMapping(field, elementTypeName);
}

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

public void addChoiceElement(XMLField field, String elementTypeName) {
  this.fieldToClassNameMappings.put(field, elementTypeName);
  if (classNameToFieldMappings.get(elementTypeName) == null) {
    classNameToFieldMappings.put(elementTypeName, field);
  }        
  addChoiceElementMapping(field, elementTypeName);
}

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

public void addChoiceElement(XMLField field, String elementTypeName) {
  this.fieldToClassNameMappings.put(field, elementTypeName);
  if (classNameToFieldMappings.get(elementTypeName) == null) {
    classNameToFieldMappings.put(elementTypeName, field);
  }
  addChoiceElementMapping(field, elementTypeName);
}

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

public void addChoiceElement(XMLField sourceField, Class elementType, XMLField targetField) {
  getFieldToClassMappings().put(sourceField, elementType);
  this.fieldToClassNameMappings.put(sourceField, elementType.getName());
  if (classToFieldMappings.get(elementType) == null) {
    classToFieldMappings.put(elementType, sourceField);
  }
  addChoiceElementMapping(sourceField, elementType, targetField);
}

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

public void addChoiceElement(XMLField xmlField, Class elementType) {
  getFieldToClassMappings().put(xmlField, elementType);
  if(!(this.fieldToClassNameMappings.containsKey(xmlField))) {
    this.fieldToClassNameMappings.put(xmlField, elementType.getName());
  }
  if (classToFieldMappings.get(elementType) == null) {
    classToFieldMappings.put(elementType, xmlField);
  }
  addChoiceElementMapping(xmlField, elementType);
}

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

public void addChoiceElement(XMLField xmlField, Class elementType) {
  getFieldToClassMappings().put(xmlField, elementType);
  if(!(this.fieldToClassNameMappings.containsKey(xmlField))) {
    this.fieldToClassNameMappings.put(xmlField, elementType.getName());
  }
  if (classToFieldMappings.get(elementType) == null) {
    classToFieldMappings.put(elementType, xmlField);
  }
  addChoiceElementMapping(xmlField, elementType);
}

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

public void addChoiceElement(XMLField xmlField, Class elementType) {
  getFieldToClassMappings().put(xmlField, elementType);
  if(!(this.fieldToClassNameMappings.containsKey(xmlField))) {
    this.fieldToClassNameMappings.put(xmlField, elementType.getName());
  }
  if (classToFieldMappings.get(elementType) == null) {
    classToFieldMappings.put(elementType, xmlField);
  }
  addChoiceElementMapping(xmlField, elementType);
}

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

public void addChoiceElement(XMLField sourceField, Class elementType, XMLField targetField) {
  getFieldToClassMappings().put(sourceField, elementType);
  this.fieldToClassNameMappings.put(sourceField, elementType.getName());
  if (classToFieldMappings.get(elementType) == null) {
    classToFieldMappings.put(elementType, sourceField);
  }
  addChoiceElementMapping(sourceField, elementType, targetField);
}

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

public void addChoiceElement(List<XMLField> srcFields, String elementTypeName, List<XMLField> tgtFields) {
  for(XMLField sourceField:srcFields) {
    this.fieldToClassNameMappings.put(sourceField, elementTypeName);
  }
  if (getClassNameToSourceFieldsMappings().get(elementTypeName) == null) {
    getClassNameToSourceFieldsMappings().put(elementTypeName, srcFields);
  }
  addChoiceElementMapping(srcFields, elementTypeName, tgtFields);
}

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

public void addChoiceElement(String srcXpath, String elementTypeName, String tgtXpath) {
  XMLField field = new XMLField(srcXpath);
  XMLField tgtField = new XMLField(tgtXpath);
  this.fieldToClassNameMappings.put(field, elementTypeName);
  if(this.classNameToFieldMappings.get(elementTypeName) == null) {
    this.classNameToFieldMappings.put(elementTypeName, field);
  }
  addChoiceElementMapping(field, elementTypeName, tgtField);        
}

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

public void addChoiceElement(List<XMLField> srcFields, Class elementType, List<XMLField> tgtFields) {
  for(XMLField sourceField:srcFields) {
    getFieldToClassMappings().put(sourceField, elementType);
    this.fieldToClassNameMappings.put(sourceField, elementType.getName());
  }
  if (getClassToSourceFieldsMappings().get(elementType) == null) {
    getClassToSourceFieldsMappings().put(elementType, srcFields);
  }
  addChoiceElementMapping(srcFields, elementType, tgtFields);
}

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

public void addChoiceElement(String srcXpath, String elementTypeName, String tgtXpath) {
  XMLField field = new XMLField(srcXpath);
  XMLField tgtField = new XMLField(tgtXpath);
  this.fieldToClassNameMappings.put(field, elementTypeName);
  if(this.classNameToFieldMappings.get(elementTypeName) == null) {
    this.classNameToFieldMappings.put(elementTypeName, field);
  }
  addChoiceElementMapping(field, elementTypeName, tgtField);
}

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

public void addChoiceElement(List<XMLField> srcFields, String elementTypeName, List<XMLField> tgtFields) {
  for(XMLField sourceField:srcFields) {
    this.fieldToClassNameMappings.put(sourceField, elementTypeName);
  }
  if (getClassNameToSourceFieldsMappings().get(elementTypeName) == null) {
    getClassNameToSourceFieldsMappings().put(elementTypeName, srcFields);
  }
  addChoiceElementMapping(srcFields, elementTypeName, tgtFields);
}

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

public void addChoiceElement(List<XMLField> srcFields, Class elementType, List<XMLField> tgtFields) {
  for(XMLField sourceField:srcFields) {
    getFieldToClassMappings().put(sourceField, elementType);
    this.fieldToClassNameMappings.put(sourceField, elementType.getName());
  }
  if (getClassToSourceFieldsMappings().get(elementType) == null) {
    getClassToSourceFieldsMappings().put(elementType, srcFields);
  }
  addChoiceElementMapping(srcFields, elementType, tgtFields);
}

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