Examples of PbPsiElement


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

Examples of protobuf.lang.psi.api.PbPsiElement

        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
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.