Examples of PbRefImpl


Examples of protobuf.lang.psi.impl.reference.PbRefImpl

public class PbPsiCreator implements PbElementTypes {

    public static PsiElement createElement(ASTNode node) {
        final IElementType type = node.getElementType();
        if (type == CUSTOM_TYPE_REF) {
            return new PbRefImpl(node);
        }
        if (type == IMPORT_DECL) {
            return new PbImportDefImpl(node);
        }
        if (type == IMPORT_REF) {
            return new PbRefImpl(node);
        }
        if (type == PACKAGE_DECL) {
            return new PbPackageDefImpl(node);
        }
        if (type == PACKAGE_REF) {
            return new PbRefImpl(node);
        }
        if (type == OPTION_LIST) {
            return new PbOptionListImpl(node);
        }
        if (type == OPTION_REF) {
            return new PbRefImpl(node);
        }
        if (type == OPTION_REF_SEQ) {
            return new PbOptionRefSeqImpl(node);
        }
        if (type == OPTION_ASSIGNMENT) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.