001/* 002 * To change this template, choose Tools | Templates 003 * and open the template in the editor. 004 */ 005package armyc2.c5isr.graphics2d; 006 007/** 008 * 009* 010 */ 011public final class Font { 012 public static int PLAIN=0; 013 int _size=10; 014 String _text=""; 015 int _type=0; 016 public Font(String s,int type,int size) 017 { 018 _text=s; 019 _type=type; 020 _size=size; 021 return; 022 } 023 public int getSize() 024 { 025 return _size; 026 } 027}