1 /*
2 * $Id: IInputTypeCapability.java,v 1.2 2007/02/02 17:33:31 oeuillot Exp $
3 */
4 package org.rcfaces.core.component.capability;
5
6 /**
7 *
8 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9 * @version $Revision: 1.2 $ $Date: 2007/02/02 17:33:31 $
10 */
11 public interface IInputTypeCapability {
12 int AS_PUSH_BUTTON = 1;
13
14 int AS_CHECK_BUTTON = 2;
15
16 int AS_DROP_DOWN_MENU = 4;
17
18 int AS_RADIO_BUTTON = 8;
19
20 int AS_SUBMIT_BUTTON = 16;
21
22 int AS_RESET_BUTTON = 32;
23
24 int AS_SEPARATOR = 64;
25
26 int getInputType();
27
28 void setInputType(int inputType);
29 }