View Javadoc

1   package org.catacomb.interlish.structure;
2   
3   
4   import java.awt.Graphics2D;
5   
6   
7   public interface TextPainter {
8   
9   
10      void paintText(Graphics2D g);
11  
12      int getFullTextHeight();
13  
14  
15  
16  }