Package org.eclipse.jst.jsp.core.jspel

Examples of org.eclipse.jst.jsp.core.jspel.IJSPELTranslator


    }
  }


  private void translateEL(String elText, String delim, IStructuredDocumentRegion currentNode, int contentStart, int contentLength) {
    IJSPELTranslator translator = getELTranslator();
    //prop: start EL expression means Tapestry value expression, WTP does not need to handler this kind of EL expression
    if (null != translator && !elText.startsWith("prop:")) {
      List elProblems = translator.translateEL(elText, delim, currentNode, contentStart, contentLength, fUserELExpressions, fUserELRanges, fStructuredDocument);
      fTranslationProblems.addAll(elProblems);
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jst.jsp.core.jspel.IJSPELTranslator

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.