Java Code Examples for com.twosigma.beakerx.mimetype.MIMEContainer#HIDDEN

The following examples show how to use com.twosigma.beakerx.mimetype.MIMEContainer#HIDDEN . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TableDisplay.java    From beakerx with Apache License 2.0 5 votes vote down vote up
private Object contextMenuClickHandlerCommon(Object... params) throws Exception {
  Object actionObject = params[0];
  ArrayList<Object> other = (ArrayList<Object>) params[1];
  if (actionObject instanceof ContextMenuAction) {
    ContextMenuAction action = (ContextMenuAction) actionObject;
    action.apply((Integer) other.get(0), (Integer) other.get(1), this);
  } else {
    Object ret = runClosure(params[0], other.toArray());
  }
  return MIMEContainer.HIDDEN;
}
 
Example 2
Source File: TableDisplay.java    From beakerx with Apache License 2.0 4 votes vote down vote up
private Object doubleClickHandler(Object... params) throws Exception {
  Object[] values = ((List<List<?>>) params[0]).toArray();
  Object ret = runClosure(this.doubleClickListener, values);
  return MIMEContainer.HIDDEN;
}