Examples of XMLCommentFoldingPosition


Examples of org.eclipse.wst.xml.ui.internal.projection.XMLCommentFoldingPosition

        // else if the region is only an open tag or an open/close tag
        // then don't fold it
        if (startRegion != null && endRegion != null) {
          pos = new XMLElementFoldingPosition(startRegion, endRegion);
        } else if (startRegion != null && node instanceof CommentImpl) {
          pos = new XMLCommentFoldingPosition(startRegion);
        }
      }
    }
    // }
    return pos;
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.