Examples of XMLElementFoldingPosition


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

        // between the start and end tag
        // else if the region is a comment
        // 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);
        }
      }
    }
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.