home *** CD-ROM | disk | FTP | other *** search
- package netscape.application;
-
- class WindowInvalidationAgent implements Target {
- ExternalWindow window;
-
- WindowInvalidationAgent(ExternalWindow var1) {
- this.window = var1;
- }
-
- void run() {
- Application var1 = Application.application();
- if (var1 != null) {
- var1.performCommandLater(this, "invalidate", (Object)null, false);
- }
-
- }
-
- public void performCommand(String var1, Object var2) {
- this.window.invalidateAWTWindow();
- }
- }
-