added ApplicationFrame.java -- to be implemented
This commit is contained in:
parent
c425fb7fe8
commit
9e93cf8928
19
cicaprojekt/ApplicationFrame.java
Normal file
19
cicaprojekt/ApplicationFrame.java
Normal file
@ -0,0 +1,19 @@
|
||||
package cicaprojekt;
|
||||
|
||||
import javax.swing.*;
|
||||
|
||||
public class ApplicationFrame implements Runnable
|
||||
{
|
||||
private JFrame jframe;
|
||||
|
||||
|
||||
public ApplicationFrame(){
|
||||
jframe = new JFrame();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user