Codota Logo
ViewerCell.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.eclipse.jface.viewers.ViewerCell
constructor

Best Java code snippets using org.eclipse.jface.viewers.ViewerCell.<init> (Showing top 11 results out of 315)

  • Common ways to obtain ViewerCell
private void myMethod () {
ViewerCell v =
  • Codota IconSWTFocusCellManager sWTFocusCellManager;sWTFocusCellManager.getFocusCell()
  • Codota IconViewerRow viewerRow;viewerRow.getCell(column)
  • Codota IconColumnViewer columnViewer;columnViewer.getColumnViewerEditor().getFocusCell()
  • Smart code suggestions by Codota
}
origin: org.eclipse.platform/org.eclipse.jface

private ViewerCell getViewerCell(Event event, Object element) {
  ViewerRow row= viewer.getViewerRowFromItem(event.item);
  return new ViewerCell(row, event.index, element);
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jface

private ViewerCell getViewerCell(Event event, Object element) {
  ViewerRow row= viewer.getViewerRowFromItem(event.item);
  return new ViewerCell(row, event.index, element);
}
origin: org.eclipse.platform/org.eclipse.jface

/**
 * Get a ViewerCell for the column at index.
 *
 * @param column
 * @return {@link ViewerCell} or <code>null</code> if the index is negative.
 */
public ViewerCell getCell(int column) {
  if (column >= 0)
    return new ViewerCell((ViewerRow) clone(), column, getElement());
  return null;
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jface

/**
 * Get a ViewerCell for the column at index.
 *
 * @param column
 * @return {@link ViewerCell} or <code>null</code> if the index is negative.
 */
public ViewerCell getCell(int column) {
  if (column >= 0)
    return new ViewerCell((ViewerRow) clone(), column, getElement());
  return null;
}
origin: org.eclipse.rap/org.eclipse.rap.jface

/**
 * Get a ViewerCell for the column at index.
 * 
 * @param column
 * @return {@link ViewerCell} or <code>null</code> if the index is negative.
 */
public ViewerCell getCell(int column) {
  if (column >= 0)
    return new ViewerCell((ViewerRow) clone(), column, getElement());
  return null;
}
origin: org.eclipse.platform/org.eclipse.jface

cellToUpdate = new ViewerCell(cellToUpdate.getViewerRow(), cellToUpdate.getColumnIndex(), element);
origin: org.eclipse.scout.sdk.deps/org.eclipse.jface

cellToUpdate = new ViewerCell(cellToUpdate.getViewerRow(), cellToUpdate.getColumnIndex(), element);
origin: org.eclipse.rap/org.eclipse.rap.jface

cellToUpdate = new ViewerCell(cellToUpdate.getViewerRow(), cellToUpdate.getColumnIndex(), element);
origin: org.eclipse.platform/org.eclipse.jface

cellToUpdate = new ViewerCell(cellToUpdate.getViewerRow(), cellToUpdate.getColumnIndex(), element);
origin: org.eclipse.rap/org.eclipse.rap.jface

cellToUpdate = new ViewerCell(cellToUpdate.getViewerRow(), cellToUpdate.getColumnIndex(), element);
origin: org.eclipse.scout.sdk.deps/org.eclipse.jface

cellToUpdate = new ViewerCell(cellToUpdate.getViewerRow(), cellToUpdate.getColumnIndex(), element);
org.eclipse.jface.viewersViewerCell<init>

Javadoc

Create a new instance of the receiver on the row.

Popular methods of ViewerCell

  • getElement
    Get the element this row represents.
  • setText
    Set the text for the cell.
  • setImage
    Set the Image for the cell.
  • setStyleRanges
    Set the style ranges to be applied on the text label Note: Requires StyledCellLabelProvider with own
  • getColumnIndex
    Get the index of the cell.
  • getText
    Return the text for the cell.
  • setBackground
    Set the background color of the cell.
  • setForeground
    Set the foreground color of the cell.
  • getItem
    Return the item for the receiver.
  • setFont
    Set the font of the cell.
  • getViewerRow
  • getBounds
    Get the bounds of the cell.
  • getViewerRow,
  • getBounds,
  • getImage,
  • getStyleRanges,
  • equals,
  • getControl,
  • getNeighbor,
  • getVisualIndex,
  • isVisible

Popular in Java

  • Start an intent from android
  • runOnUiThread (Activity)
  • getSystemService (Context)
  • orElseThrow (Optional)
  • DecimalFormat (java.text)
    DecimalFormat is a concrete subclass ofNumberFormat that formats decimal numbers. It has a variety o
  • Locale (java.util)
    A Locale object represents a specific geographical, political, or cultural region. An operation that
  • Reference (javax.naming)
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now