代码搜索:WindowEvent
找到约 2,736 项符合「WindowEvent」的源代码
代码结果 2,736
www.eeworm.com/read/145188/5747417
java guiproxyauthenticator.java
//定义这个类所在的包
package examples.security.proxy;
//定义这个类引入的其他类
import java.awt.Button;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.Dimension;
impor
www.eeworm.com/read/144587/5749574
java multilistener.java
import java.awt.*;
import java.awt.event.*;
public class MultiListener implements MouseListener,MouseMotionListener,WindowListener
{
private Frame f;
private TextField tf;
public static void
www.eeworm.com/read/144216/5752026
java closer.java
import java.awt.event.*;
import java.awt.*;
public class Closer extends WindowAdapter {
public void windowClosing(WindowEvent e) {
Window w = e.getWindow();
w.dispose();
}
}
www.eeworm.com/read/143622/5756162
java sftphostchooser.java
/*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
*
www.eeworm.com/read/143622/5756163
java webdavhostchooser.java
/*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
*
www.eeworm.com/read/143622/5756164
java nfshostchooser.java
/*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
*
www.eeworm.com/read/140271/5793324
java hw16_19.java
import java.awt.*;
import java.awt.event.*;
public class hw16_19 extends Frame
{
static hw16_19 frm=new hw16_19();
static WinLis wlis=new WinLis();
public static void main(String
www.eeworm.com/read/139648/5797529
java parallelblackbox.java
/*
* @(#)ParallelBlackBox.java 1.4 98/10/20 SMI
*
* Author: Tom Corson
*
* Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved.
*
* Sun grants you ("Licensee") a non-exclusive, royalt
www.eeworm.com/read/137691/5819921
java messagebox.java
package net.tinyos.task.spy;
import java.awt.*;
import java.io.*;
import java.awt.event.*;
public class MessageBox extends Dialog implements ActionListener, WindowListener {
MessageBox(Frame par
www.eeworm.com/read/137691/5819922
java settings.java
package net.tinyos.task.spy;
import java.awt.*;
import java.io.*;
import java.awt.event.*;
import net.tinyos.message.*;
import net.tinyos.packet.*;
public class Settings extends Dialog implements Wi