congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
Composite.traverse
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: BiglySoftware/BiglyBT

  @Override
  public void run() {
    composite.traverse( SWT.TRAVERSE_TAB_NEXT);
  }
});
origin: org.eclipse.swt.cocoa.macosx/x86_64

public boolean traverse(int event){
  /*
   * When the traverse event is sent to the CCombo, it will create a list of
   * controls to tab to next. Since the CCombo is a composite, the next control is
   * the Text field which is a child of the CCombo. It will set focus to the text
   * field which really is itself. So, call the traverse next events directly on the text.
   */
  if (event == SWT.TRAVERSE_ARROW_NEXT || event == SWT.TRAVERSE_TAB_NEXT) {
    return text.traverse(event);
  }
  return super.traverse(event);
}
}
origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

@Override
public boolean traverse(int event){
  /*
   * When the traverse event is sent to the CCombo, it will create a list of
   * controls to tab to next. Since the CCombo is a composite, the next control is
   * the Text field which is a child of the CCombo. It will set focus to the text
   * field which really is itself. So, call the traverse next events directly on the text.
   */
  if (event == SWT.TRAVERSE_ARROW_NEXT || event == SWT.TRAVERSE_TAB_NEXT) {
    return text.traverse(event);
  }
  return super.traverse(event);
}
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

@Override
public boolean traverse(int event){
  /*
   * When the traverse event is sent to the CCombo, it will create a list of
   * controls to tab to next. Since the CCombo is a composite, the next control is
   * the Text field which is a child of the CCombo. It will set focus to the text
   * field which really is itself. So, call the traverse next events directly on the text.
   */
  if (event == SWT.TRAVERSE_ARROW_NEXT || event == SWT.TRAVERSE_TAB_NEXT) {
    return text.traverse(event);
  }
  return super.traverse(event);
}
}
origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

@Override
public boolean traverse(int event){
  /*
   * When the traverse event is sent to the CCombo, it will create a list of
   * controls to tab to next. Since the CCombo is a composite, the next control is
   * the Text field which is a child of the CCombo. It will set focus to the text
   * field which really is itself. So, call the traverse next events directly on the text.
   */
  if (event == SWT.TRAVERSE_ARROW_NEXT || event == SWT.TRAVERSE_TAB_NEXT) {
    return text.traverse(event);
  }
  return super.traverse(event);
}
}
origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

@Override
public boolean traverse(int event){
  /*
   * When the traverse event is sent to the CCombo, it will create a list of
   * controls to tab to next. Since the CCombo is a composite, the next control is
   * the Text field which is a child of the CCombo. It will set focus to the text
   * field which really is itself. So, call the traverse next events directly on the text.
   */
  if (event == SWT.TRAVERSE_ARROW_NEXT || event == SWT.TRAVERSE_TAB_NEXT) {
    return text.traverse(event);
  }
  return super.traverse(event);
}
}
origin: BiglySoftware/BiglyBT

 break;
case UISWTViewEvent.TYPE_FOCUSGAINED:{
  composite.traverse( SWT.TRAVERSE_TAB_NEXT);
  break;
origin: BiglySoftware/BiglyBT

 break;
case UISWTViewEvent.TYPE_FOCUSGAINED:{
  composite.traverse( SWT.TRAVERSE_TAB_NEXT);
  break;
origin: BiglySoftware/BiglyBT

 break;
case UISWTViewEvent.TYPE_FOCUSGAINED:{
  composite.traverse( SWT.TRAVERSE_TAB_NEXT);
  break;
org.eclipse.swt.widgetsCompositetraverse

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

  • Creating JSON documents from java classes using gson
  • getApplicationContext (Context)
  • findViewById (Activity)
  • setContentView (Activity)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • 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