View Javadoc

1   package org.lsst.ccs.plugin.jas3.tutorial;
2   
3   import javax.swing.JEditorPane;
4   
5   /**
6    * This is just an example of using an arbitrary JComponent as a page in JAS.
7    * @author tonyj
8    */
9   public class TutorialPage extends JEditorPane {
10  
11      public TutorialPage() {
12          super("text/html","I am a TutorialPage. Close me using my popup menu, or by clicking the "
13                  + "x in my page tab.");
14      }
15      
16  }