Example usage for org.eclipse.jface.viewers TreeViewer subclass-usage

List of usage examples for org.eclipse.jface.viewers TreeViewer subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.viewers TreeViewer subclass-usage.

Usage

From source file org.overture.ide.ui.outline.VdmOutlineViewer.java

public class VdmOutlineViewer extends TreeViewer {
    /**
     * 
     */

    public VdmOutlineViewer(Composite parent) {

From source file org.pentaho.pms.ui.concept.editor.PropertyTreeWidget.java

public class PropertyTreeWidget extends TreeViewer implements ISelectionProvider, IConceptModificationListener {

    // ~ Static fields/initializers ======================================================================================

    private static final Log logger = LogFactory.getLog(PropertyTreeWidget.class);

From source file org.pentaho.pms.ui.concept.editor.TableColumnTreeWidget.java

public class TableColumnTreeWidget extends TreeViewer implements ISelectionProvider, ITableModificationListener {

    // ~ Static fields/initializers ======================================================================================

    private static final Log logger = LogFactory.getLog(TableColumnTreeWidget.class);

From source file org.polarsys.reqcycle.predicates.ui.components.PredicatesTreeViewer.java

public class PredicatesTreeViewer extends TreeViewer {

    private boolean mayExpandCustomPredicates;

    public PredicatesTreeViewer(Tree tree) {
        super(tree);

From source file org.polymap.core.project.ui.project.ProjectTreeViewer.java

/**
 * 
 *
 * @author <a href="http://www.polymap.de">Falko Brutigam</a>
 * @since 3.1
 */

From source file org.polymap.rhei.batik.toolkit.md.MdListViewer.java

/**
 * Expandable list. Use the {@link Config} properties to configure the viewer.
 * 
 * @see <a href="http://www.google.com/design/spec/components/lists.html">Material Design</a>
 * @author <a href="http://www.polymap.de">Falko Brutigam</a>
 * @author Joerg Reichert <joerg@mapzone.io>

From source file org.projectusus.ui.internal.proportions.infopresenter.UsusInfoViewer.java

public class UsusInfoViewer extends TreeViewer {

    public UsusInfoViewer(Composite parent, IUsusInfo ususInfo) {
        super(parent, SWT.H_SCROLL | SWT.V_SCROLL | SWT.SINGLE);
        setLabelProvider(new LabelProvider());
        setLabelProvider(new UsusInfoLP());

From source file org.projectusus.ui.viewer.UsusTreeViewer.java

public class UsusTreeViewer<T> extends TreeViewer {

    private final static int STYLE = SWT.H_SCROLL | SWT.V_SCROLL | SWT.MULTI | SWT.FULL_SELECTION;

    public UsusTreeViewer(Composite parent, IColumnDesc<T>[] columns) {
        super(new Tree(parent, STYLE));

From source file org.reuseware.sokan.ui.internal.views.BasicRepositoryTreeViewer.java

/**
 * Tree viewer that returns the <code>IFile</code> representation
 * for selected elements (instead of the <code>EObject</code>
 * representation). This allows other views to better interact with
 * the selection -- in particular the problem view.
 */

From source file org.rssowl.ui.internal.editors.feed.NewsTableViewer.java

/**
 * The actual TreeViewer responsible for displaying the Headlines of a Feed.
 *
 * @author Ismael Juma (ismael@juma.me.uk)
 * @author bpasero
 */