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 com.centurylink.mdw.plugin.designer.model.WorkflowElement.java

public abstract class WorkflowElement implements IStructuredSelection, IAdaptable {
    public abstract String getTitle();

    public abstract Long getId();

    public abstract String getName();

From source file com.google.dart.tools.ui.internal.text.editor.DartElementSelection.java

public class DartElementSelection extends DartTextSelection implements IStructuredSelection {

    public DartElementSelection(DartEditor editor, DartElement element, IDocument document, int offset,
            int length) {
        super(editor, element, document, offset, length);
    }

From source file com.iw.plugins.spindle.util.JavaListSelectionProvider.java

public class JavaListSelectionProvider implements IStructuredSelection {

    List list;

    /**
     * Constructor for JavaListSelectionProvider

From source file com.mercatis.lighthouse3.ui.swimlaneeditor.providers.UnequalSelection.java

/**
 * An IStructuredSelection that never equals another one.
 * 
 */
public class UnequalSelection implements IStructuredSelection {

From source file com.nokia.s60tools.ui.ProgrammaticSelection.java

/**
 * This class represents a selection of objects 
 * that are part of some UI component that implements
 * <code>org.eclipse.jface.viewers.ISelectionProvider</code> interface.
 * 
 * This class can be used to make programmatic selection,

From source file com.se.simplicity.editor.internal.selection.SceneSelection.java

/**
 * <p>
 * A selection within a {@link com.se.simplicity.scene.Scene Scene}.
 * </p>
 * 
 * <p>

From source file com.zeus.eclipsePlugin.model.ModelSelection.java

/**
 * Used for returning a set of selected model elements.
 */
public class ModelSelection implements IStructuredSelection {
    private LinkedList<ZXTM> zxtmList;
    private LinkedList<Rule> ruleList;

From source file de.walware.ecommons.ui.util.StructuredSelectionProxy.java

public class StructuredSelectionProxy implements IStructuredSelection {

    protected final IStructuredSelection fSelection;

    public StructuredSelectionProxy(final IStructuredSelection selection) {
        fSelection = selection;

From source file dk.itu.sdg.language.xwpf.resource.xwpf.ui.XwpfEObjectSelection.java

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

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

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

From source file eclox.ui.editor.advanced.NavigableSelection.java

/**
 * Implements a selection that provides the history of all selected
 * items as well as the navigation among those items.
 *
 * @author gbrocker
 */