1 /*
2 * $Id: IDialogPriorityCapability.java,v 1.4 2007/05/24 12:26:17 oeuillot Exp $
3 *
4 */
5 package org.rcfaces.core.component.capability;
6
7 /**
8 * A int indicating the priority for this component. Permits to show a higher
9 * priority dialog before a lower priority one.
10 *
11 * @author Fred (latest modification by $Author: oeuillot $)
12 * @version $Revision: 1.4 $ $Date: 2007/05/24 12:26:17 $
13 */
14 public interface IDialogPriorityCapability {
15
16 int MAX_PRIORITY = 1000;
17
18 int getDialogPriority();
19
20 void setDialogPriority(int priority);
21 }