Package com.espertech.esper.event.xml

Examples of com.espertech.esper.event.xml.DOMComplexElementGetter


        for (SchemaElementSimple simple : complexProperty.getSimpleElements())
        {
            if (simple.getName().equals(propertyNameAtomic))
            {
                return new DOMComplexElementGetter(propertyNameAtomic, null, simple.isArray());
            }
        }

        for (SchemaElementComplex complex : complexProperty.getChildren())
        {
            FragmentFactoryDOMGetter complexFragmentFactory = new FragmentFactoryDOMGetter(eventAdapterService, xmlEventType, propertyExpression);
            if (complex.getName().equals(propertyNameAtomic))
            {
                return new DOMComplexElementGetter(propertyNameAtomic, complexFragmentFactory, complex.isArray());
            }
        }

        return null;
    }
View Full Code Here

TOP

Related Classes of com.espertech.esper.event.xml.DOMComplexElementGetter

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.