- missing override annotations added

git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@158 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
This commit is contained in:
schlaepfer
2006-08-09 13:52:01 +00:00
parent 488f8c84b6
commit 520d399c0d
9 changed files with 13 additions and 1 deletions

View File

@@ -20,6 +20,8 @@ import ch.ntb.usb.Usb_Bus;
public class UsbView extends JFrame {
private static final long serialVersionUID = 4693554326612734263L;
private static final int APP_WIDTH = 600, APP_HIGHT = 800;
private JPanel jContentPane = null;
@@ -52,6 +54,7 @@ public class UsbView extends JFrame {
this.setContentPane(getJContentPane());
this.setTitle("USB View");
this.addWindowListener(new java.awt.event.WindowAdapter() {
@Override
public void windowClosing(java.awt.event.WindowEvent e) {
System.exit(0);
}