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 org.kalypso.ogc.gml.selection.IFeatureSelection.java

public interface IFeatureSelection extends IStructuredSelection {
    /**
     * Returns the workspace containing the given feature *
     * 
     * @param feature
     *          Must be an element of this selection

From source file org.kalypso.zml.core.base.IMultipleTsLinkSelection.java

/**
 * @author Dirk Kuch
 */
public interface IMultipleTsLinkSelection extends IStructuredSelection {
    @Override
    MultipleTsLink getFirstElement();

From source file org.locationtech.udig.ui.FeatureCollectionSelection.java

/**
 * Adapt a feature collection as a Selection so it can be used with StructedViewers.
 * 
 * @author Jesse
 * @since 1.1.0
 */

From source file org.locationtech.udig.ui.FidSelection.java

/**
 * A selection that uses a set of fids to indicate the selection in the collection of features.  The actual selection
 * is the features indicated by the fids.
 * @author Jesse
 * @since 1.1.0
 */

From source file org.neuro4j.studio.debug.ui.views.ISelectionAdapter.java

public class ISelectionAdapter implements ISelection, IStructuredSelection {

    JDIStackFrameAdapter adapter = null;

    public ISelectionAdapter(JDIStackFrameAdapter adapter) {
        this.adapter = adapter;

From source file org.sintef.thingml.resource.thingml.ui.ThingmlEObjectSelection.java

public class ThingmlEObjectSelection implements org.eclipse.jface.viewers.IStructuredSelection {

    private final org.eclipse.emf.ecore.EObject selectedObject;
    private final boolean highlighting;

    public ThingmlEObjectSelection(org.eclipse.emf.ecore.EObject selectedObject, boolean highlighting) {

From source file org.springframework.ide.eclipse.ui.dialogs.WrappingStructuredSelection.java

/**
 * This {@link IStructuredSelection} implementation fixes WTP problem in class
 * <code>StructuredTextSelection</code> that prevents from reentrant calls to
 * {@link StructuredSelection#getFirstElement()}.
 * <p>
 * Subsequent calls on the WTP class return <code>null</code>.

From source file uk.ac.diamond.scisoft.analysis.rcp.inspector.DatasetSelection.java

/**
 * Class to encapsulate selection of items for dataset inspector
 */
public class DatasetSelection implements IStructuredSelection {

    /**