List of usage examples for org.eclipse.jface.viewers TableViewer subclass-usage
From source file ac.soton.fmusim.components.ui.controls.FMUParameterTableViewer.java
/**
* Table viewer for displaying FMUParameter elements.
* Capable of editing variable values via cell editor.
*
* @author vitaly
*
From source file ac.soton.multisim.ui.viewers.ColumnProviderTableViewer.java
/**
* Table viewer for displaying elements via column providers.
* Capable of editing variable values via cell editor.
*
* @author vitaly
*
From source file ac.soton.rms.ui.controls.FMUParameterTableViewer.java
/**
* Table viewer for displaying FMUParameter elements.
* Capable of editing variable values via cell editor.
*
* @author vitaly
*
From source file ch.opentrainingcenter.client.ui.tableviewer.LapInfoTableViewer.java
public class LapInfoTableViewer extends TableViewer { private final Sport sport; public LapInfoTableViewer(final Composite parent, final Sport sport) { super(parent, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL | SWT.FULL_SELECTION | SWT.BORDER);
From source file ch.opentrainingcenter.client.ui.tableviewer.RoutenTableViewer.java
public class RoutenTableViewer extends TableViewer { public RoutenTableViewer(final Composite parent, final int style) { super(parent, style); }
From source file ch.opentrainingcenter.client.ui.tableviewer.TrackTableViewer.java
public class TrackTableViewer extends TableViewer { public TrackTableViewer(final Composite parent, final int style) { super(parent, style); }
From source file ch.uzh.ifi.seal.permo.lib.ui.jface.AbstractDefaultTableViewer.java
/** * An abstract implementation of a {@link TableViewer} providing typical settings and additional methods to create * columns. */ public abstract class AbstractDefaultTableViewer extends TableViewer {
From source file com.aptana.git.ui.internal.history.CommitFileDiffViewer.java
@SuppressWarnings("restriction") class CommitFileDiffViewer extends TableViewer { CommitFileDiffViewer(final Composite parent, final GitHistoryPage historyPage) { super(parent, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL | SWT.BORDER | SWT.FULL_SELECTION);
From source file com.aptana.git.ui.internal.history.CommitGraphTable.java
/**
* Table to show the list of commits for a resource in reverse chronological order. Custom paints the first column so
* that we can draw the branching history graphically.
*
* @author cwilliams
*/
From source file com.archimatetool.templates.dialog.TemplatesTableViewer.java
/** * Templates Table Viewer * * @author Phillip Beauvoir */ public class TemplatesTableViewer extends TableViewer {