1 19 package jcckit.graphic; 20 21 import java.awt.Color ; 22 23 28 public interface TextAttributes extends GraphicAttributes { 29 33 public Color getTextColor(); 34 35 39 public String getFontName(); 40 41 45 public FontStyle getFontStyle(); 46 47 50 public double getFontSize(); 51 52 57 public double getOrientationAngle(); 58 59 65 public Anchor getHorizontalAnchor(); 66 67 73 public Anchor getVerticalAnchor(); 74 } 75 76 | Popular Tags |