1 /** 2 * Class LexField - string representation of a field 3 * @author Roman Yedokov 4 * modifier type field_name; 5 */ 6 7 package net.rmi.rmiSynth.lex; 8 9 10 public class LexField extends LexStructure { 11 12 /** 13 * Field to string 14 * 15 * @return s 16 */ 17 public String toString() { 18 String s = ""; 19 s = s + "\t"; 20 s = s + getHeader(); 21 s = s + ";\n"; 22 return s; 23 } 24 } 25