View Javadoc

1   /*
2    * $Id: GeneratedScriptInformation.java,v 1.1 2008/09/17 16:35:05 oeuillot Exp $
3    */
4   package org.rcfaces.core.internal.script;
5   
6   import org.rcfaces.core.internal.contentAccessor.BasicGeneratedResourceInformation;
7   
8   /**
9    * 
10   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11   * @version $Revision: 1.1 $ $Date: 2008/09/17 16:35:05 $
12   */
13  public class GeneratedScriptInformation extends BasicGeneratedResourceInformation {
14      private static final String REVISION = "$Revision: 1.1 $";
15  
16      public GeneratedScriptInformation() {
17          super();
18      }
19  
20      public String getCharSet() {
21          return (String) getAttribute(IScriptContentModel.CHARSET_PROPERTY);
22      }
23  
24      public void setCharSet(String charSet) {
25          setAttribute(IScriptContentModel.CHARSET_PROPERTY, charSet);
26      }
27  }