1 /*
2 * $Id: IAutoTabCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3 */
4 package org.rcfaces.core.component.capability;
5
6 /**
7 * A boolean value indicating if the focus should move automatically to the next
8 * element when the entry is completed.
9 *
10 * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
11 * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
12 */
13 public interface IAutoTabCapability {
14
15 /**
16 * Returns a boolean value indicating if the focus should move automatically
17 * to the next element when the entry is completed.
18 *
19 * @return boolean
20 */
21 boolean isAutoTab();
22
23 /**
24 * Sets a boolean value indicating if the focus should move automatically to
25 * the next element when the entry is completed.
26 *
27 * @param autoTab
28 * boolean
29 */
30 void setAutoTab(boolean autoTab);
31 }