View Javadoc

1   /*
2    * $Id: ICalendarLayoutCapability.java,v 1.1 2008/01/14 14:03:02 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.1 $ $Date: 2008/01/14 14:03:02 $
10   */
11  public interface ICalendarLayoutCapability {
12  
13      int SHORT_LAYOUT = 1;
14  
15      int MEDIUM_LAYOUT = 2;
16  
17      int LONG_LAYOUT = 3;
18  
19      int FULL_LAYOUT = 4;
20  
21      int DEFAULT_LAYOUT = MEDIUM_LAYOUT;
22  
23      int getCalendarLayout();
24  
25      void setCalendarLayout(int layout);
26  }