Example #1
0
 public void setWindow(AWindow window) {
   m_window = window;
   setUpScriptEngineCtx();
 }
Example #2
0
 /** Sets the context to be associated with this thread. The context can be null. */
 public static void setCtx(final DapCtx context) {
   if (context != null) {
     context.setUpScriptEngineCtx();
   }
   CtxAssociator.setCtx(context);
 }