added ApplicationFrame.java -- to be implemented

This commit is contained in:
Kjistóf 2016-05-07 14:09:39 +02:00
parent c425fb7fe8
commit 9e93cf8928
1 changed files with 19 additions and 0 deletions

View 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()
{
}
}