Package at.ssw.coco.ide.features.views.contentoutline

Examples of at.ssw.coco.ide.features.views.contentoutline.ATGOutlineInformationControl


   */
  public IInformationPresenter getOutlinePresenter(ISourceViewer sourceViewer) {
    InformationPresenter presenter;
    presenter = new InformationPresenter(new IInformationControlCreator() {
      public IInformationControl createInformationControl(Shell parent) {
        return new ATGOutlineInformationControl(parent, fEditor);
      }
    });
    presenter.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer));
    presenter.setAnchor(AbstractInformationControlManager.ANCHOR_GLOBAL);

View Full Code Here

TOP

Related Classes of at.ssw.coco.ide.features.views.contentoutline.ATGOutlineInformationControl

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.