Tabnine Logo
Item.release
Code IndexAdd Tabnine to your IDE (free)

How to use
release
method
in
org.eclipse.swt.widgets.Item

Best Java code snippets using org.eclipse.swt.widgets.Item.release (Showing top 7 results out of 315)

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

@Override
void release (boolean destroy) {
  if (OS.GTK3) {
    //454940 ExpandBar DND fix.
    //Since controls are now nested under the Item,
    //Item is responsible for it's release.
    if (control != null && !control.isDisposed ()) {
      control.release (destroy);
    }
  }
  super.release (destroy);
}

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

@Override
void release (boolean destroy) {
  if (OS.GTK3) {
    //Since controls are now nested under the tabItem,
    //tabItem is responsible for it's release.
    if (control != null && !control.isDisposed ()) {
      control.release (destroy);
    }
  }
  super.release (destroy);
}

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

@Override
void release (boolean destroy) {
  if (OS.GTK3) {
    //Since controls are now nested under the tabItem,
    //tabItem is responsible for it's release.
    if (control != null && !control.isDisposed ()) {
      control.release (destroy);
    }
  }
  super.release (destroy);
}

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

@Override
void release (boolean destroy) {
  if (OS.GTK3) {
    //Since controls are now nested under the tabItem,
    //tabItem is responsible for it's release.
    if (control != null && !control.isDisposed ()) {
      control.release (destroy);
    }
  }
  super.release (destroy);
}

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

@Override
void release (boolean destroy) {
  if (OS.GTK3) {
    //454940 ExpandBar DND fix.
    //Since controls are now nested under the Item,
    //Item is responsible for it's release.
    if (control != null && !control.isDisposed ()) {
      control.release (destroy);
    }
  }
  super.release (destroy);
}

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

@Override
void release (boolean destroy) {
  if (OS.GTK3) {
    //454940 ExpandBar DND fix.
    //Since controls are now nested under the Item,
    //Item is responsible for it's release.
    if (control != null && !control.isDisposed ()) {
      control.release (destroy);
    }
  }
  super.release (destroy);
}

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

void release(boolean destroy) {
  TreeItem[] selectedItems = null;
  Tree parent = this.parent;
  if (destroy) {
    if (getDrawing()) selectedItems = parent.getSelection ();
  }
  super.release(destroy);
  if (selectedItems != null) parent.selectItems (selectedItems, true);
}

org.eclipse.swt.widgetsItemrelease

Popular methods of Item

  • getData
  • setImage
    Sets the receiver's image to the argument, which may be null indicating that no image should be disp
  • getText
    Returns the receiver's text, which will be an empty string if it has never been set.
  • setText
    Sets the receiver's text. Note: If control characters like '\n', '\t' etc. are used in the string, t
  • dispose
  • isDisposed
  • setData
  • getImage
    Returns the receiver's image if it has one, or null if it does not.
  • checkWidget
  • getNameText
  • releaseParent
  • releaseWidget
  • releaseParent,
  • releaseWidget,
  • reskinChildren,
  • error,
  • releaseChildren,
  • releaseHandle,
  • deregister,
  • destroyWidget,
  • register

Popular in Java

  • Making http post requests using okhttp
  • requestLocationUpdates (LocationManager)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • onRequestPermissionsResult (Fragment)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Socket (java.net)
    Provides a client-side TCP socket.
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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