01: package org.wings.plaf.css.dwr;
02:
03: import org.directwebremoting.impl.DefaultRemoter;
04: import org.wings.plaf.css.Utils;
05:
06: public class SessionRemoter extends DefaultRemoter {
07: public String generateInterfaceScript(String scriptName, String path)
08: throws SecurityException {
09: String script = super .generateInterfaceScript(scriptName, path);
10: script += "\n" + Utils.HEADER_LOADED_CALLBACK;
11: return script;
12: }
13: }
|