import java.awt.*;


public class TxtLabel 
  {
  int xval;
  int yval;
  Color labelcolor;
  String txt;
  String alignmentType;
  String rotation;

  // constructor
  public TxtLabel(String label, int x, int y, Color col, String aligntype, String rotation)
    {
    this.txt = label;
    this.xval = x;
    this.yval = y;
    this.labelcolor = col;
    this.alignmentType = aligntype;
    this.rotation = rotation;
    }
} 
