1. /*
  2. * @(#)PopupFactory.java 1.3 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package javax.swing;
  11. import java.applet.Applet;
  12. import java.awt.*;
  13. import java.awt.event.*;
  14. import javax.accessibility.*;
  15. import java.io.Serializable;
  16. import java.util.Hashtable;
  17. import java.util.Locale;
  18. import java.util.Vector;
  19. interface PopupFactory {
  20. public Popup getPopup(Component comp, Component invoker, int x, int y);
  21. // PENDING(ges): eradicate?
  22. public void setLightWeightPopupEnabled(boolean aFlag);
  23. public boolean isLightWeightPopupEnabled();
  24. }