Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

TabIndexState.java 585B

1234567891011121314151617181920212223242526272829
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.shared.ui;
  5. /**
  6. * Interface implemented by state classes that support tab indexes.
  7. *
  8. * @author Vaadin Ltd
  9. * @version @VERSION@
  10. * @since 7.0.0
  11. *
  12. */
  13. public interface TabIndexState {
  14. /**
  15. * Gets the <i>tabulator index</i> of the field.
  16. *
  17. * @return the tab index for the Field
  18. */
  19. public int getTabIndex();
  20. /**
  21. * Sets the <i>tabulator index</i> of the field.
  22. *
  23. * @param tabIndex
  24. * the tab index to set
  25. */
  26. public void setTabIndex(int tabIndex);
  27. }