Ejemplo n.º 1
0
  public static void dispose(TextEdit ed, TextEdit next) throws InputException, IOException {
    // trace("disposing " + ed + " currfvc " + currfvc);

    reconnect(ed, next);
    fvmap.remove(ed);
    ed.disposeFvc();
  }
Ejemplo n.º 2
0
 public static FvContext dispose(View vi) {
   // trace("removing " + vi);
   FvContext retval = null;
   if (currfvc.vi == vi) retval = nextView();
   fvmap.remove(vi);
   // else
   //   for (FvContext fvc :ehash.values())
   //      EditContainer.unRegisterListener(fvc);
   return retval;
 }