Example usage for com.google.gwt.user.client.ui FocusWidget setTabIndex

List of usage examples for com.google.gwt.user.client.ui FocusWidget setTabIndex

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui FocusWidget setTabIndex.

Prototype

public void setTabIndex(int index) 

Source Link

Usage

From source file:com.vaadin.client.ui.VCheckBoxGroup.java

License:Apache License

public void setTabIndex(int tabIndex) {
    for (Widget anOptionsContainer : getWidget()) {
        FocusWidget widget = (FocusWidget) anOptionsContainer;
        widget.setTabIndex(tabIndex);
    }// w w w .  j  ava2s .c  o  m
}

From source file:com.vaadin.client.ui.VOptionGroup.java

License:Apache License

@Override
public void setTabIndex(int tabIndex) {
    for (Iterator<Widget> iterator = panel.iterator(); iterator.hasNext();) {
        FocusWidget widget = (FocusWidget) iterator.next();
        widget.setTabIndex(tabIndex);
    }//from www .j a va  2  s  . c  om
}

From source file:com.vaadin.terminal.gwt.client.ui.VOptionGroup.java

License:Open Source License

@Override
protected void setTabIndex(int tabIndex) {
    for (Iterator<Widget> iterator = panel.iterator(); iterator.hasNext();) {
        FocusWidget widget = (FocusWidget) iterator.next();
        widget.setTabIndex(tabIndex);
    }/* w  w  w  .j a v  a 2s. c o  m*/
}