View Javadoc

1   /*
2    * $Id: IContentFamily.java,v 1.2 2008/12/09 16:37:13 oeuillot Exp $
3    */
4   package org.rcfaces.core.lang;
5   
6   import org.rcfaces.core.internal.contentAccessor.ContentFamilies.ContentTypeImpl;
7   
8   /**
9    * 
10   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11   * @version $Revision: 1.2 $ $Date: 2008/12/09 16:37:13 $
12   */
13  public interface IContentFamily {
14  
15      public static final IContentFamily IMAGE = new ContentTypeImpl("image");
16  
17      public static final IContentFamily HELP = new ContentTypeImpl("help");
18  
19      public static final IContentFamily SCRIPT = new ContentTypeImpl("script");
20  
21      public static final IContentFamily STYLE = new ContentTypeImpl("style");
22  
23      public static final IContentFamily USER = new ContentTypeImpl("user");
24  
25      public static final IContentFamily JSP = new ContentTypeImpl("jsp");
26  
27      int getOrdinal();
28  }