/**
 * Class LexField - string representation of a field
 * @author Roman Yedokov
 * modifier type field_name;
 */

package rmi.rmiSynth.lex;


public class LexField extends LexStructure {

  /**
   * Field to string
   * @return s
   */
  public String toString() {
    String s = "";
    s = s + "\t";
    s = s + getHeader();
    s = s + ";\n";
    return s;
  }
}