1 29 30 package com.caucho.xtpdoc; 31 32 import com.caucho.config.types.RawString; 33 34 public class VerboseFormattedTextWithAnchors extends FormattedTextWithAnchors { 35 public VerboseFormattedTextWithAnchors(Document document) 36 { 37 super(document); 38 } 39 40 public void setText(RawString text) 41 { 42 addItem(new VerboseText(text.getValue(), getDocument())); 43 } 44 } 45 | Popular Tags |