List of usage examples for org.eclipse.jface.viewers TreeViewer subclass-usage
From source file org.cs3.pdt.internal.views.lightweightOutline.OutlineTreeViewer.java
class OutlineTreeViewer extends TreeViewer { OutlineTreeViewer(Tree tree) { super(tree); }
From source file org.dawnsci.common.widgets.breadcrumb.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 org.ebayopensource.turmeric.eclipse.ui.components.SOAConsumerServicesViewer.java
/**
* The Class SOAConsumerServicesViewer.
*
* @author yayu
* @since 1.0.0
*/
From source file org.eclipse.cdt.cpp.ui.internal.views.CppViewer.java
public class CppViewer extends TreeViewer implements ISelectionChangedListener, ISelected, ITreeViewerListener { private DataElement _selected; private DataElement _currentInput; public CppViewer(Composite parent) { super(parent);
From source file org.eclipse.cdt.debug.internal.ui.sourcelookup.SourceContainerViewer.java
/** * The viewer containing the source containers. * It is a tree viewer since the containers are represented in tree form. */ public class SourceContainerViewer extends TreeViewer { /**
From source file org.eclipse.cdt.debug.internal.ui.views.executables.BaseViewer.java
/** * Base viewer used by both the executables viewers and the source files viewer. */ abstract class BaseViewer extends TreeViewer { // Common columns
From source file org.eclipse.cdt.dstore.ui.widgets.DataElementTreeViewer.java
public class DataElementTreeViewer extends TreeViewer implements ISelected, Listener, IDataElementViewer { private ViewFilter _viewFilter; private DataElement _currentDescriptor; private DataElement _currentInput;
From source file org.eclipse.cdt.internal.ui.util.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 {
From source file org.eclipse.cdt.internal.ui.viewsupport.ExtendedTreeViewer.java
public class ExtendedTreeViewer extends TreeViewer { private boolean fPreservingSelection = false; public ExtendedTreeViewer(Composite parent) { super(parent);
From source file org.eclipse.compare.structuremergeviewer.DiffTreeViewer.java
/**
* A tree viewer that works on objects implementing
* the <code>IDiffContainer</code> and <code>IDiffElement</code> interfaces.
* <p>
* This class may be instantiated; it is not intended to be subclassed outside
* this package.