Platform Interface Helper Class: RWindowMap

helper 
  import java.util.Hashtable;
  import naccio.library.Check;

  public class RWindowMap {
    static private Hashtable fmap = new Hashtable ();
    
    public static RWindow add (java.awt.Window f) {
      RWindow rf = new RWindow (f);
      fmap.put (f, rf);
      return rf;
    }

    public static RWindow lookup (Object f) {
      RWindow rf = (RWindow) fmap.get (f);      
      return rf;
    }
  }

About this file

Naccio Home Page
David Evans
University of Virginia, Computer Science