summaryrefslogtreecommitdiff
path: root/java/EAC/EACFont.java
blob: 97f4d39b6cbe10e7f56486228dbd5443095cf488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * Title:        EACFont
 * Description:  The font to be used for on-screen text
 */
package EAC;
import java.awt.*;

public class EACFont {

  // Use 9-point Courier New
  public final int FONT_SIZE = 10;
  protected Font eac_font = new Font("Courier New",Font.PLAIN,FONT_SIZE);

  public EACFont() {
  }

  public Font getFont() {
    return eac_font;
  } /* getFont */

}