/**
** this program is free software. 【相关文章:数据仓库设计的21条原则[DMResea】 【扩展阅读:捕捉DataGrid的双击事件(C#版本】** 【扩展信息:消息机制无处不在】 ** you may redistribute it and/or modify it under the terms of the gnu ** general public license as published by the free software foundation. ** version 2 of the license should be included with this distribution in ** the file license, as well as license.html. if the license is not ** included with this distribution, you may find a copy at the fsf web ** site at ´www.gnu.org´ or ´www.fsf.org´, or you may write to the ** free software foundation, 675 mass ave, cambridge, ma 02139 usa. ** ** this software is provided as-is without warranty of any kind, ** not even the implied warranty of merchantability. the author ** of this software, assumes _no_ responsibility for any ** consequence resulting from the use, modification, or ** redistribution of this software. **/ package kindani.gui;import java.awt.*;
import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; import javax.swing.border.*; import javax.swing.text.*; /** * 所有jframe的基类。 * 有一个标题为参数的构造函数。 * 缺省关闭操作为系统退出。 * 缺省的l&f为操作系统的l&f。 * created at 2002/10/12 * modified at */ ... 下一页