1 19 20 package swingwtx.swing.text; 21 22 28 public class PlainDocument extends AbstractDocument { 29 30 public PlainDocument() { content = new GapContent(); } 31 public PlainDocument(AbstractDocument.Content c) { content = c; } 32 33 public Element getDefaultRootElement() { 34 return null; 35 } 36 37 public Element getParagraphElement(int pos) { 38 return null; 39 } 40 41 } 42 | Popular Tags |