Package org.eclipse.jdt.internal.ui.text.java

Examples of org.eclipse.jdt.internal.ui.text.java.ProposalContextInformation


   
    /* the context information is calculated with respect to the java document
     * thus it needs to be updated in respect of the JSP document.
     */
    if(contextInformation instanceof ProposalContextInformation) {
      ProposalContextInformation proposalInfo = (ProposalContextInformation)contextInformation;
      int contextInfoJSPOffset = fTranslation.getJspOffset(proposalInfo.getContextInformationPosition());
      proposalInfo.setContextInformationPosition(contextInfoJSPOffset);
    }
   
    int relevance = javaProposal.getRelevance();
   
    boolean updateLengthOnValidate = true;
View Full Code Here


   
    /* the context information is calculated with respect to the java document
     * thus it needs to be updated in respect of the JSP document.
     */
    if(contextInformation instanceof ProposalContextInformation) {
      ProposalContextInformation proposalInfo = (ProposalContextInformation)contextInformation;
      int contextInfoJSPOffset = fTranslation.getJspOffset(proposalInfo.getContextInformationPosition());
      proposalInfo.setContextInformationPosition(contextInfoJSPOffset);
    }
   
    int relevance = javaProposal.getRelevance();
   
    boolean updateLengthOnValidate = true;
View Full Code Here

   
    /* the context information is calculated with respect to the java document
     * thus it needs to be updated in respect of the JSP document.
     */
    if(contextInformation instanceof ProposalContextInformation) {
      ProposalContextInformation proposalInfo = (ProposalContextInformation)contextInformation;
      int contextInfoJSPOffset = fTranslation.getJspOffset(proposalInfo.getContextInformationPosition());
      proposalInfo.setContextInformationPosition(contextInfoJSPOffset);
    }
   
    int relevance = javaProposal.getRelevance();
   
    boolean updateLengthOnValidate = true;
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.ui.text.java.ProposalContextInformation

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.