Package org.apache.hivemind.impl

Examples of org.apache.hivemind.impl.SchemaProcessorImpl


     * @param  a list of {@link Element}s
     * @see org.apache.hivemind.definition.ConfigurationParser#parse(org.apache.hivemind.definition.ContributionContext, java.lang.Object)
     */
    public Object parse(ContributionContext context, Object data)
    {
        SchemaProcessorImpl processor = new SchemaProcessorImpl(context.getConfigurationPoint()
                .getErrorLog(), _schema);
        Object contributionObject = constructContributionObject(_schema, context.getDefiningModule());
        processor.process(contributionObject, (List) data, context.getDefiningModule());
        return contributionObject;
    }
View Full Code Here

TOP

Related Classes of org.apache.hivemind.impl.SchemaProcessorImpl

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.