Example usage for org.eclipse.jface.viewers IStructuredSelection interface-usage

List of usage examples for org.eclipse.jface.viewers IStructuredSelection interface-usage

Introduction

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

Usage

From source file net.sf.versiontree.ui.TreeSelection.java

/**
 * @author Jan
 * Instances of the class can manage selections of tree elements in
 * a tree view.
 */
public class TreeSelection implements IStructuredSelection {

From source file net.sourceforge.eclipsetrader.ui.SecurityGroupSelection.java

public class SecurityGroupSelection implements IStructuredSelection {
    private List<SecurityGroup> selection = new ArrayList<SecurityGroup>();

    public SecurityGroupSelection(SecurityGroup group) {
        selection = new ArrayList<SecurityGroup>();
        selection.add(group);

From source file org.apache.felix.sigil.eclipse.ui.util.SingletonSelection.java

@SuppressWarnings("unchecked")
public class SingletonSelection implements IStructuredSelection {

    private final Object singleton;

    public SingletonSelection(Object singleton) {

From source file org.apache.felix.sigil.ui.eclipse.ui.util.SingletonSelection.java

@SuppressWarnings("unchecked")
public class SingletonSelection implements IStructuredSelection {

    private final Object singleton;

    public SingletonSelection(Object singleton) {

From source file org.dyno.visual.swing.designer.WidgetSelection.java

/**
 * 
 * WidgetSelection
 *
 * @version 1.0.0, 2008-7-3
 * @author William Chen

From source file org.eclipse.buildship.ui.util.nodeselection.NodeSelection.java

/**
 * Provides information about a given set of selected nodes.
 */
public final class NodeSelection implements IStructuredSelection {

    private static final NodeSelection EMPTY = new NodeSelection(ImmutableList.of());

From source file org.eclipse.emf.diffmerge.ui.diffuidata.ComparisonSelection.java

/**
 * <!-- begin-user-doc -->
 * A selection model for Comparison Viewer.
 * <!-- end-user-doc -->
 *
 * <p>

From source file org.eclipse.emf.mapping.presentation.ComposedSelection.java

public class ComposedSelection implements IStructuredSelection, IComposedSelection {
    protected ISelection[] selections;
    protected ISelection primarySelection;

    public ComposedSelection(ISelection primarySelection, ISelection[] selections) {
        this.primarySelection = primarySelection;

From source file org.eclipse.gmf.runtime.emf.ui.properties.util.PropertyPageSelection.java

/**
 * A structured selection for use in the property page dialog.  It
 * adapts to the following types
 * <P>
 * <UL>
 * <LI>IElement</LI>

From source file org.eclipse.linuxtools.tmf.ui.viewers.timeAnalysis.widgets.PlainSelection.java

public class PlainSelection implements IStructuredSelection {

    List<Object> list = new ArrayList<Object>();

    public PlainSelection() {
    }