Package org.eclipse.dltk.internal.ui.text

Examples of org.eclipse.dltk.internal.ui.text.HTML2TextReader


   */
  public IInformationControl createInformationControl(Shell parent) {
    fControl = new PHPSourceViewerInformationControl(parent, fOrientation) {
      public void setInformation(String content) {
        TextPresentation presentation = new TextPresentation();
        HTML2TextReader reader = new HTML2TextReader(new StringReader(
            content), presentation);
        try {
          super.setInformation(reader.getString());
        } catch (IOException e) {
        }
      }
    };
    fControl.addDisposeListener(new DisposeListener() {
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.internal.ui.text.HTML2TextReader

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.