1 /*
2 * $Id: IScriptOperationContext.java,v 1.1 2008/03/17 14:30:48 oeuillot Exp $
3 */
4 package org.rcfaces.core.internal.script;
5
6 /**
7 *
8 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9 * @version $Revision: 1.1 $ $Date: 2008/03/17 14:30:48 $
10 */
11 public interface IScriptOperationContext {
12 String getCharset();
13
14 void setCharset(String charset);
15
16 long getLastModifiedDate();
17
18 void setLastModifiedDate(long lastModifiedDate);
19
20 }