Examples of PbPsiElementVisitor


Examples of protobuf.lang.psi.PbPsiElementVisitor

    @NotNull
    @Override
    public Collection<StructureViewTreeElement> getChildrenBase() {
        final Collection<StructureViewTreeElement> children = new ArrayList<StructureViewTreeElement>();
        //noinspection ConstantConditions
        getElement().acceptChildren(new PbPsiElementVisitor() {
            public void visitPbElement(final PbPsiElement element) {
                if (element instanceof PbNamedElement) {
                    children.add(new PbStructureViewTreeElement((PbNamedElement)element));
                } else {
                    element.acceptChildren(this);
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.