Package org.eclipse.jst.jsp.core.internal.parser

Examples of org.eclipse.jst.jsp.core.internal.parser.JSPDirectiveStructuredDocumentRegion


  public static IStructuredDocumentRegion createRegion(int type) {
    IStructuredDocumentRegion instance = null;
    switch (type) {
      case JSP_DIRECTIVE :
        instance = new JSPDirectiveStructuredDocumentRegion();
        break;
      default :
        instance = XMLStructuredRegionFactory.createRegion(type);
    }
    return instance;
View Full Code Here

TOP

Related Classes of org.eclipse.jst.jsp.core.internal.parser.JSPDirectiveStructuredDocumentRegion

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.