001package com.ganteater.ae.desktop.editor;
002
003import javax.swing.BorderFactory;
004import javax.swing.JEditorPane;
005
006public class EditorPane extends JEditorPane {
007
008        private static final long serialVersionUID = 1L;
009
010        public EditorPane() {
011                setEditorKit(JEditorPane.createEditorKitForContentType("text/html"));
012                setEditable(false);
013
014                putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES, Boolean.TRUE);
015
016                setBorder(BorderFactory.createEmptyBorder(8, 8, 8, 8));
017        }
018
019}