add lab11
This commit is contained in:
11
lab/lab11/Question3/Start.java
Normal file
11
lab/lab11/Question3/Start.java
Normal file
@@ -0,0 +1,11 @@
|
||||
public class Start {
|
||||
public static void main(String[] args) {
|
||||
javax.swing.SwingUtilities.invokeLater(new Runnable() {
|
||||
// implements the Runnable interface with a run method
|
||||
@Override
|
||||
public void run() {
|
||||
new MyFrame();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user