1
2
3
4 package org.rcfaces.core.internal.script;
5
6 import org.rcfaces.core.internal.contentAccessor.BasicGeneratedResourceInformation;
7
8
9
10
11
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 }