Skip to content

Commit

Permalink
update2016.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankisFine authored and FrankisFine committed Sep 7, 2016
1 parent 7141026 commit 6c991a5
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 43 deletions.
Binary file added 20160907182700.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 20160907182728.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 20160907182802.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 43 additions & 43 deletions Logger/src/Logger/LoggerClass.java
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
package Logger;

import java.awt.EventQueue;

import javax.swing.JFrame;

public class LoggerClass {

private JFrame frame;

/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
LoggerClass window = new LoggerClass();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}

/**
* Create the application.
*/
public LoggerClass() {
initialize();
}

/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

}
package Logger;

import java.awt.EventQueue;

import javax.swing.JFrame;

public class LoggerClass {

private JFrame frame;

/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
LoggerClass window = new LoggerClass();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}

/**
* Create the application.
*/
public LoggerClass() {
initialize();
}

/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

}

0 comments on commit 6c991a5

Please sign in to comment.