1 22 23 package salsa.html; 24 25 import javax.swing.text.*; 26 import javax.swing.text.html.*; 27 28 public class CustomHTMLEditorKit extends HTMLEditorKit 29 { 30 public Document createDocument() 31 { 32 StyleSheet styles = getStyleSheet(); 33 StyleSheet ss = new StyleSheet(); 35 ss.addStyleSheet( styles ); 36 37 MutableHTMLDocument doc = new MutableHTMLDocument( ss ); 38 doc.setParser( getParser() ); 39 doc.setAsynchronousLoadPriority( 4 ); 40 doc.setTokenThreshold( 100 ); 41 return doc; 42 } 43 } 44 | Popular Tags |