// Mirek's Java Cellebration
// http://www.mirwoj.opus.chelm.pl
//
// The single rule class

public class CARule
{  String name;  String def;  // more members to come

  public CARule()
  {
  }
  public CARule(String sNam, String sDef)
  {    name = sNam;    def = sDef;
  }
}
