Package org.apache.hivemind.parse

Examples of org.apache.hivemind.parse.SchemaAssignmentDescriptor


        if (md.getSchemaAssignment() == null)
            return;
       
        for (Iterator assignments = md.getSchemaAssignment().iterator(); assignments.hasNext();)
        {
            SchemaAssignmentDescriptor sad = (SchemaAssignmentDescriptor) assignments.next();

            SchemaAssignment schemaAssignment = new SchemaAssignment(sad.getConfigurationId(), sad.getSchemaId(), sad.getLocation());
            module.addSchemaAssignment(schemaAssignment);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.hivemind.parse.SchemaAssignmentDescriptor

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.