Package protobuf.lang.psi.api

Examples of protobuf.lang.psi.api.PbPsiElement


        return children;
    }

    @Override
    public String getPresentableText() {
        final PbPsiElement element = getElement();
        if (element instanceof PsiNamedElement) {
            return ((PsiNamedElement) element).getName();
        }
        assert false;
        return null;
View Full Code Here


        return null;
    }

    @Override
    public Icon getIcon(boolean open) {
        final PbPsiElement element = getElement();
        if (element instanceof PbMessageDef) {
            return PbIcons.MESSAGE;
        } else if (element instanceof PbEnumDef) {
            return PbIcons.ENUM;
        } else if (element instanceof PbServiceDef) {
View Full Code Here

TOP

Related Classes of protobuf.lang.psi.api.PbPsiElement

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.