001    package escjava.vcGeneration;
002    
003    public class TString extends TLiteral{
004    
005        public String value;
006    
007        protected TString (String value){
008            this.value = value;
009            type = _String;
010        }
011    
012        public void accept(/*@ non_null @*/ TVisitor v) throws java.io.IOException{
013            v.visitTString(this);
014        }
015    
016    }
017