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