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

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

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

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

String getNameText () {
  if ((parent.style & SWT.VIRTUAL) != 0) {
    if (!cached) return "*virtual*"; //$NON-NLS-1$
  }
  return super.getNameText ();
}

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

@Override
String getNameText() {
 String result;
 if( ( style & SWT.SEPARATOR ) != 0 ) {
  result = "|";
 } else {
  result = super.getNameText();
 }
 return result;
}
origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

@Override
String getNameText () {
  if ((parent.style & SWT.VIRTUAL) != 0) {
    if (!cached) return "*virtual*"; //$NON-NLS-1$
  }
  return super.getNameText ();
}

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

@Override
String getNameText () {
  if ((style & SWT.SEPARATOR) != 0) return "|";
  return super.getNameText ();
}

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

@Override
String getNameText () {
  if ((style & SWT.SEPARATOR) != 0) return "|";
  return super.getNameText ();
}

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

@Override
String getNameText () {
  if ((style & SWT.SEPARATOR) != 0) return "|";
  return super.getNameText ();
}

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

@Override
String getNameText () {
  if ((parent.style & SWT.VIRTUAL) != 0) {
    if (!cached) return "*virtual*"; //$NON-NLS-1$
  }
  return super.getNameText ();
}

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

@Override
String getNameText () {
  if ((parent.style & SWT.VIRTUAL) != 0) {
    if (!cached) return "*virtual*"; //$NON-NLS-1$
  }
  return super.getNameText ();
}

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

@Override
String getNameText () {
  if ((parent.style & SWT.VIRTUAL) != 0) {
    if (!cached) return "*virtual*"; //$NON-NLS-1$
  }
  return super.getNameText ();
}

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

@Override
String getNameText () {
  if ((parent.style & SWT.VIRTUAL) != 0) {
    if (!cached) return "*virtual*"; //$NON-NLS-1$
  }
  return super.getNameText ();
}

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

@Override
String getNameText() {
 if( ( parent.style & SWT.VIRTUAL ) != 0 ) {
  if( !cached ) {
   return "*virtual*";
  }
 }
 return super.getNameText();
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

@Override
String getNameText () {
  if ((parent.style & SWT.VIRTUAL) != 0) {
    if (!cached) return "*virtual*"; //$NON-NLS-1$
  }
  return super.getNameText ();
}

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

String getNameText () {
  if ((parent.style & SWT.VIRTUAL) != 0) {
    if (!cached) return "*virtual*"; //$NON-NLS-1$
  }
  return super.getNameText ();
}

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

@Override
String getNameText () {
  if ((style & SWT.SEPARATOR) != 0) return "|";
  return super.getNameText ();
}

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

@Override
String getNameText () {
  if ((parent.style & SWT.VIRTUAL) != 0) {
    if (!cached) return "*virtual*"; //$NON-NLS-1$
  }
  return super.getNameText ();
}

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

String getNameText () {
  if ((style & SWT.SEPARATOR) != 0) return "|";
  return super.getNameText ();
}

org.eclipse.swt.widgetsItemgetNameText

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
  • releaseParent
  • releaseWidget
  • reskinChildren
  • releaseWidget,
  • reskinChildren,
  • error,
  • releaseChildren,
  • releaseHandle,
  • deregister,
  • destroyWidget,
  • register,
  • release

Popular in Java

  • Finding current android device location
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • onRequestPermissionsResult (Fragment)
  • notifyDataSetChanged (ArrayAdapter)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top Sublime Text plugins
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