Package com.dci.intellij.dbn.language.common.element.impl

Examples of com.dci.intellij.dbn.language.common.element.impl.WrapperElementTypeImpl


            log.debug("Created one-of element definition");
        } else if (ElementTypeDefinition.QUALIFIED_IDENTIFIER.is(type)) {
            result =  new QualifiedIdentifierElementTypeImpl(this, parent, createId(), def);
            log.debug("Created qualified identifier element definition");
        } else if (ElementTypeDefinition.WRAPPER.is(type)) {
            result = new WrapperElementTypeImpl(this, parent, createId(), def);
            wrapperElementTypes.add((WrapperElementType) result);
            log.debug("Created wrapper element definition");
        } else if (ElementTypeDefinition.ELEMENT.is(type)) {
            String id = determineMandatoryAttribute(def, "ref-id", "Invalid reference to element.");
            result = getNamedElementType(id, parent);
View Full Code Here

TOP

Related Classes of com.dci.intellij.dbn.language.common.element.impl.WrapperElementTypeImpl

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.