Package org.eclipse.jface.text.templates

Examples of org.eclipse.jface.text.templates.TemplateBuffer


   * @see ICompletionProposal#getAdditionalProposalInfo()
   */
  public String getAdditionalProposalInfo() {
      try {
        fContext.setReadOnly(true);
      TemplateBuffer templateBuffer;
      try {
        templateBuffer= fContext.evaluate(fTemplate);
      } catch (TemplateException e) {
        return null;
      }

      return templateBuffer.getString();

      } catch (BadLocationException e) {
      return null;
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jface.text.templates.TemplateBuffer

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.