List of usage examples for org.eclipse.jface.viewers TreeViewer subclass-usage
From source file ext.org.eclipse.jdt.internal.ui.viewsupport.ProblemTreeViewer.java
/** * Extends a TreeViewer to allow more performance when showing error ticks. * A <code>ProblemItemMapper</code> is contained that maps all items in * the tree to underlying resource */ public class ProblemTreeViewer extends TreeViewer implements ResourceToItemsMapper.IContentViewerAccessor {
From source file featureide.fm.ui.editors.ConfigurationTreeViewer.java
/**
* requires a configuration as input (via setInput) and additionally a feature
* model with the constructor
*
* @author Christian Kaestner
*/
From source file gitLink.GLinkTreeViewer.java
/** * A Tree view for Git Status. * * @author Mark Farnsworth <farnsworth2008@gmail.com> */ final class GLinkTreeViewer extends TreeViewer
From source file gov.nasa.ensemble.core.activityDictionary.view.ActivityDictionaryViewer.java
/**
* This class acts as the tree viewer (controller in the MVC paradigm) for the
* <code>ActivityDictionaryView</code>. Its structure is based heavily on the
* <code>MergeTreeViewer</code>.
*
* @see gov.nasa.ensemble.core.activityDictionary.view.ActivityDictionaryView
From source file gov.nasa.ensemble.core.plan.advisor.view.PlanAdvisorTreeViewer.java
public class PlanAdvisorTreeViewer extends TreeViewer { public PlanAdvisorTreeViewer(Composite parent) { super(parent, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL | SWT.FULL_SELECTION); Tree tree = getTree(); tree.setData("name", "PlanAdvisorView.violationTree");
From source file info.novatec.inspectit.rcp.editor.tree.DeferredTreeViewer.java
/**
* This tree viewer works in conjunction with the
* {@link org.eclipse.ui.progress.DeferredTreeContentManager} so that the expand function will work.
* <p>
* <b>IMPORTANT:</b> The class is licensed under the Eclipse Public License v1.0 as it includes the
* code from the {@link org.eclipse.jface.viewers.TreeViewer} class belonging to the Eclipse Rich
From source file it.eng.spagobi.meta.querybuilder.ui.shared.edit.tree.ModelTreeViewer.java
/** * @author Alberto Ghedin (alberto.ghedin@eng.it) * */ public class ModelTreeViewer extends TreeViewer {
From source file melnorme.util.swt.jface.TreeViewerExt.java
public class TreeViewerExt extends TreeViewer { public TreeViewerExt(Composite parent, int style) { super(parent, style); }
From source file metabest.solver.ui.wizards.dnd.DragMetaModelElementViewer.java
public class DragMetaModelElementViewer extends TreeViewer { MetaModel metamodel = null; IStructuredSelection selection = null; public void refresh(MetaModel metamodel) { if (metamodel != null) {
From source file metabest.solver.ui.wizards.dnd.DropMetaModelElementTableTreeViewer.java
public class DropMetaModelElementTableTreeViewer extends TreeViewer { List<AnnotatedElement> elements = new ArrayList<AnnotatedElement>(); IStructuredSelection selection = null; MetaModel metamodel = null; /*public void refresh(MetaModel) {