forked from pH-7/Simple-Java-Text-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFEdit.java
More file actions
29 lines (24 loc) · 707 Bytes
/
FEdit.java
File metadata and controls
29 lines (24 loc) · 707 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
/**
* @name Simple Java NotePad
* @package ph.notepad
* @file UI.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
* @update 2015-09-4
*
*
* @modifiedby Achintha Gunasekara
* @modweb http://www.achinthagunasekara.com
* @modemail contact@achinthagunasekara.com
*/
package simplejavatexteditor;
import javax.swing.JTextArea;
public class FEdit {
public static void clear(JTextArea textArea) {
textArea.setText("");
}
}