blob: 7850f7bdc44133ee34771ca4f8df3a7aef36dfc5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 - 2005 University Of British Columbia and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* University Of British Columbia - initial API and implementation
*******************************************************************************/
package org.eclipse.mylar.ui;
import java.util.List;
import org.eclipse.jface.text.TextSelection;
import org.eclipse.jface.viewers.TreeViewer;
import org.eclipse.mylar.core.IMylarElement;
import org.eclipse.ui.IEditorPart;
/**
* @author Mik Kersten
*/
public interface IMylarUiBridge {
public abstract void open(IMylarElement node);
public abstract void close(IMylarElement node);
public abstract boolean acceptsEditor(IEditorPart editorPart);
/**
* Note that a single editor part can correspond to multipe outlines
* (e.g. the PDE manifest editor).
*/
public abstract List<TreeViewer> getContentOutlineViewers(IEditorPart editorPart);
public abstract Object getObjectForTextSelection(TextSelection selection, IEditorPart editor);
}