Exemplo n.º 1
0
 public Reader getDomainContextReader(String contextName) throws FileNotFoundException {
   Object o = __cellGlue.getCellContext(contextName);
   if (o == null) {
     throw new FileNotFoundException("Context not found : " + contextName);
   }
   return new StringReader(o.toString());
 }
Exemplo n.º 2
0
 public Object getDomainContext(String str) {
   return __cellGlue.getCellContext(str);
 }
Exemplo n.º 3
0
 public void setDomainContext(String contextName, Object context) {
   __cellGlue.getCellContext().put(contextName, context);
 }
Exemplo n.º 4
0
 public Map<String, Object> getDomainContext() {
   return __cellGlue.getCellContext();
 }