Example usage for org.eclipse.jface.viewers ViewerCell getControl

List of usage examples for org.eclipse.jface.viewers ViewerCell getControl

Introduction

In this page you can find the example usage for org.eclipse.jface.viewers ViewerCell getControl.

Prototype

public Control getControl() 

Source Link

Document

Get the control for this cell.

Usage

From source file:uk.ac.stfc.isis.ibex.ui.configserver.editing.ButtonCellLabelProvider.java

License:Open Source License

private Composite composite(ViewerCell cell) {
    return (Composite) cell.getControl();
}

From source file:uk.ac.stfc.isis.ibex.ui.widgets.ControlCellLabelProvider.java

License:Open Source License

protected Composite composite(ViewerCell cell) {
    return (Composite) cell.getControl();
}