Package org.jibx.schema.generator

Examples of org.jibx.schema.generator.MappingDetail


     * @param type
     * @param mapping
     * @return qualified name
     */
    private QName getMappingQName(String type, MappingElement mapping) {
        MappingDetail detail = m_schemaGenerator.getMappingDetail(mapping);
        if (detail == null) {
            throw new IllegalStateException("No mapping found for type " + type);
        } else if (detail.isType()) {
            return detail.getTypeName();
        } else {
            throw new IllegalStateException("Need abstract mapping for type " + type);
        }
    }
View Full Code Here

TOP

Related Classes of org.jibx.schema.generator.MappingDetail

Copyright © 2018 www.massapicom. 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.