blob: 6832babe7a092da5cb9839719332e35ed16132f1 [file] [log] [blame]
Mark Slee7eb0d632007-03-01 00:00:27 +00001// Copyright (c) 2006- Facebook
2// Distributed under the Thrift Software License
3//
4// See accompanying file LICENSE or visit the Thrift site at:
5// http://developers.facebook.com/thrift/
6
Mark Slee83c52a82006-06-07 06:51:18 +00007package com.facebook.thrift.protocol;
8
Mark Slee83c52a82006-06-07 06:51:18 +00009/**
10 * Helper class that encapsulates struct metadata.
11 *
12 * @author Mark Slee <mcslee@facebook.com>
13 */
14public class TStruct {
15 public TStruct() {}
16
17 public TStruct(String n) {
18 name = n;
19 }
20
21 public String name = "";
22}