forked from pH-7/Simple-Java-Text-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
31 lines (25 loc) · 782 Bytes
/
Main.java
File metadata and controls
31 lines (25 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
* @name Simple Java NotePad
* @package ph.notepad
* @file Main.java
* @author SORIA Pierre-Henry
* @email pierrehs@hotmail.com
* @link http://github.com/pH-7
* @copyright Copyright Pierre-Henry SORIA, All Rights Reserved.
* @license Apache (http://www.apache.org/licenses/LICENSE-2.0)
* @create 2012-05-04
*/
package ph.notepad;
import javax.swing.JTextPane;
public class Main extends JTextPane {
private static final long serialVersionUID = 1L;
public final static String AUTHOR_EMAIL = "pierrehs@hotmail.com";
public final static String NAME = "NotePad PH";
public final static double VERSION = 1.0;
/**
* @param args
*/
public static void main(String[] args) {
new UI().setVisible(true);
}
}