1 19 20 package org.netbeans.modules.jdic; 21 22 import org.openide.awt.HtmlBrowser; 23 import org.openide.util.NbBundle; 24 25 28 public class JdicBrowser implements HtmlBrowser.Factory, java.io.Serializable { 29 30 private static final long serialVersionUID = -6L; 31 32 public JdicBrowser() { 33 } 34 35 38 public String getName () { 39 return NbBundle.getMessage(JdicBrowser.class, "CTL_JdicBrowserName"); 40 } 41 42 47 public HtmlBrowser.Impl createHtmlBrowserImpl() { 48 JdicBrowserImpl impl = null; 49 impl = new JdicBrowserImpl(); 50 return impl; 51 } 52 53 private void readObject (java.io.ObjectInputStream ois) throws java.io.IOException , ClassNotFoundException { 54 ois.defaultReadObject(); 55 } 56 57 } 58 | Popular Tags |