Examples of XMLChoiceFieldToClassAssociation


Examples of org.eclipse.persistence.internal.oxm.XMLChoiceFieldToClassAssociation

   

    public void setChoiceFieldToClassAssociations(ArrayList associations) {
        if(associations.size() > 0) {
            for(Object next:associations) {
                XMLChoiceFieldToClassAssociation association = (XMLChoiceFieldToClassAssociation)next;
                this.addChoiceElement(association.getXmlField(), association.getClassName());
                if(association.getConverter() != null) {
                    if(association.getConverter() instanceof Converter) {
                        this.addConverter(association.getXmlField(), (Converter)association.getConverter());
                    }
                }
            }
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.