1 18 19 package org.apache.batik.gvt.flow; 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 FlowTextNode extends TextNode{ 36 37 public FlowTextNode() { 38 textPainter = FlowTextPainter.getInstance(); 39 } 40 41 public void setTextPainter(TextPainter textPainter) { 42 if (textPainter == null) 43 this.textPainter = FlowTextPainter.getInstance(); 44 else 45 this.textPainter = textPainter; 46 } 47 48 }; 49 | Popular Tags |