-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOngletFichierExt.java
More file actions
33 lines (28 loc) · 868 Bytes
/
OngletFichierExt.java
File metadata and controls
33 lines (28 loc) · 868 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
32
33
import java.awt.BorderLayout;
import java.awt.Insets;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextPane;
import javax.swing.event.UndoableEditEvent;
import javax.swing.event.UndoableEditListener;
import javax.swing.text.BadLocationException;
import javax.swing.text.html.HTML;
import javax.swing.text.html.HTMLDocument;
import javax.swing.text.html.HTMLEditorKit;
import javax.swing.text.html.StyleSheet;
import javax.swing.undo.UndoManager;
/*
* Dans cette classe, un onglet correspond à un fichier
*/
public class OngletFichierExt extends Onglet //implements UndoableEditListener
{
private static final long serialVersionUID = 1L;
public OngletFichierExt(Fichier fichier)
{
super(fichier);
setLayout(new BorderLayout());
}
}