congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
Composite.checkWidget
Code IndexAdd Tabnine to your IDE (free)

How to use
checkWidget
method
in
org.eclipse.swt.widgets.Composite

Best Java code snippets using org.eclipse.swt.widgets.Composite.checkWidget (Showing top 20 results out of 315)

origin: org.eclipse.rap/org.eclipse.rap.rwt

@Override
protected void checkWidget() {
 super.checkWidget();
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

@Override
protected void checkWidget () {
  super.checkWidget ();
}

origin: org.eclipse.swt.cocoa.macosx/x86_64

protected void checkWidget () {
  super.checkWidget ();
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

@Override
protected void checkWidget () {
  super.checkWidget ();
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

@Override
protected void checkWidget () {
  super.checkWidget ();
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

@Override
protected void checkWidget () {
  super.checkWidget ();
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

/**
 * Sets the layout which is associated with the receiver to be
 * the argument which may be null.
 *
 * @param layout the receiver's new layout or null
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public void setLayout (Layout layout) {
  checkWidget();
  this.layout = layout;
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

/**
 * Sets the layout which is associated with the receiver to be
 * the argument which may be null.
 *
 * @param layout the receiver's new layout or null
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public void setLayout (Layout layout) {
  checkWidget();
  this.layout = layout;
}

origin: org.eclipse.rap/org.eclipse.rap.rwt

/**
 * Returns layout which is associated with the receiver, or
 * null if one has not been set.
 *
 * @return the receiver's layout or null
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public Layout getLayout() {
 checkWidget();
 return layout;
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

/**
 * Returns layout which is associated with the receiver, or
 * null if one has not been set.
 *
 * @return the receiver's layout or null
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public Layout getLayout () {
  checkWidget ();
  return layout;
}

origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

/**
 * Sets the layout which is associated with the receiver to be
 * the argument which may be null.
 *
 * @param layout the receiver's new layout or null
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public void setLayout (Layout layout) {
  checkWidget ();
  this.layout = layout;
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

/**
 * Sets the layout which is associated with the receiver to be
 * the argument which may be null.
 *
 * @param layout the receiver's new layout or null
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public void setLayout (Layout layout) {
  checkWidget();
  this.layout = layout;
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

/**
 * Returns layout which is associated with the receiver, or
 * null if one has not been set.
 *
 * @return the receiver's layout or null
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public Layout getLayout () {
  checkWidget();
  return layout;
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

/**
 * Returns layout which is associated with the receiver, or
 * null if one has not been set.
 *
 * @return the receiver's layout or null
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public Layout getLayout () {
  checkWidget();
  return layout;
}

origin: org.eclipse.rap/org.eclipse.rap.rwt

@Override
public boolean setFocus() {
 checkWidget();
 for( Control child : children ) {
  if( child.setFocus() ) {
   return true;
  }
 }
 return super.setFocus ();
}
origin: org.eclipse.swt.cocoa.macosx/x86_64

public boolean setFocus () {
  checkWidget ();
  Control [] children = _getChildren ();
  for (int i= 0; i < children.length; i++) {
    if (children [i].setFocus ()) return true;
  }
  return super.setFocus ();
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

@Override
public boolean setFocus () {
  checkWidget();
  Control [] children = _getChildren ();
  for (int i=0; i<children.length; i++) {
    Control child = children [i];
    if (child.getVisible () && child.setFocus ()) return true;
  }
  return super.setFocus ();
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

@Override
public boolean setFocus () {
  checkWidget();
  Control [] children = _getChildren ();
  for (int i=0; i<children.length; i++) {
    Control child = children [i];
    if (child.getVisible () && child.setFocus ()) return true;
  }
  return super.setFocus ();
}

origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

@Override
public boolean setFocus () {
  checkWidget();
  Control [] children = _getChildren ();
  for (int i=0; i<children.length; i++) {
    Control child = children [i];
    if (child.getVisible () && child.setFocus ()) return true;
  }
  return super.setFocus ();
}

origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

@Override
public boolean setFocus () {
  checkWidget ();
  Control [] children = _getChildren ();
  for (int i=0; i<children.length; i++) {
    Control child = children [i];
    if (child.setRadioFocus (false)) return true;
  }
  for (int i=0; i<children.length; i++) {
    Control child = children [i];
    if (child.setFocus ()) return true;
  }
  return super.setFocus ();
}

org.eclipse.swt.widgetsCompositecheckWidget

Popular methods of Composite

  • setLayout
    Sets the layout which is associated with the receiver to be the argument which may be null.
  • <init>
    Constructs a new instance of this class given its parent and a style value describing its behavior a
  • setLayoutData
  • layout
    Forces a lay out (that is, sets the size and location) of all widgets that are in the parent hierarc
  • getDisplay
  • getChildren
    Returns a (possibly empty) array containing the receiver's children. Children are returned in the or
  • getShell
  • getFont
  • getLayout
    Returns layout which is associated with the receiver, or null if one has not been set.
  • setFont
  • getParent
  • computeSize
  • getParent,
  • computeSize,
  • dispose,
  • setBackground,
  • getClientArea,
  • isDisposed,
  • getBackground,
  • setVisible,
  • setSize,
  • setData

Popular in Java

  • Reading from database using SQL prepared statement
  • putExtra (Intent)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • setContentView (Activity)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • Permission (java.security)
    Legacy security code; do not use.
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now