1 18 19 package org.apache.batik.extension.svg; 20 21 import java.util.List ; 22 23 import org.apache.batik.gvt.TextNode; 24 import org.apache.batik.gvt.TextPainter; 25 26 27 35 public class FlowExtTextNode extends TextNode{ 36 37 public FlowExtTextNode() { 38 textPainter = FlowExtTextPainter.getInstance(); 39 } 40 41 public void setTextPainter(TextPainter textPainter) { 42 if (textPainter == null) 43 this.textPainter = FlowExtTextPainter.getInstance(); 44 else 45 this.textPainter = textPainter; 46 } 47 48 }; 49 | Popular Tags |