blob: 04fcc1ddaddfdc345d20a9f3ccde1ac7c78fdf9a [file] [log] [blame]
package com.facebook.thrift.protocol;
/**
* Wrapper around String so that you can pass this object to a function and
* have it set the internal string value.
*
* @author Mark Slee <mcslee@facebook.com>
*/
public class TString {
public TString() {}
public TString(String v) {
value = v;
}
public String value = "";
}