本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLChoiceCollectionMapping.getFieldToClassMappings()
方法的一些代码示例,展示了XMLChoiceCollectionMapping.getFieldToClassMappings()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLChoiceCollectionMapping.getFieldToClassMappings()
方法的具体详情如下:
包路径:org.eclipse.persistence.oxm.mappings.XMLChoiceCollectionMapping
类名称:XMLChoiceCollectionMapping
方法名:getFieldToClassMappings
暂无
代码示例来源: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, 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: 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);
}
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
/**
* Process a given XMLChoiceCollectionMapping.
*
* @param mapping
* @param seq
* @param ct
* @param schemaForNamespace
* @param workingSchema
* @param properties
* @param descriptors
*/
protected void processXMLChoiceCollectionMapping(XMLChoiceCollectionMapping mapping, Sequence seq, ComplexType ct, HashMap<String, Schema> schemaForNamespace, Schema workingSchema, SchemaModelGeneratorProperties properties, List<XMLDescriptor> descriptors) {
Map<XMLField, Class> fieldToClassMap = mapping.getFieldToClassMappings();
List<XMLChoiceFieldToClassAssociation> choiceFieldToClassList = mapping.getChoiceFieldToClassAssociations();
processChoiceMapping(fieldToClassMap, choiceFieldToClassList, seq, ct, schemaForNamespace, workingSchema, properties, descriptors, true);
}
内容来源于网络,如有侵权,请联系作者删除!