import java.awt.*; import javax.swing.*; import javax.swing.event.*; public class MyTabbedPane extends JFrame { public MyTabbedPane() { JTabbedPane tabbedPane = new JTabbedPane(); JEditorPane editorPane = new JEditorPane(); JPanel panel = new JPanel(); panel.setLayout(new FlowLayout(FlowLayout.RIGHT)); tabbedPane.addTab("Editor", new JScrollPane(editorPane)); editorPane.setContentType("text/htm..