Mark Slee | 83c52a8 | 2006-06-07 06:51:18 +0000 | [diff] [blame] | 1 | package com.facebook.thrift.protocol; |
| 2 | |
| 3 | import com.facebook.thrift.types.*; |
| 4 | |
| 5 | /** |
| 6 | * Helper class that encapsulates field metadata. |
| 7 | * |
| 8 | * @author Mark Slee <mcslee@facebook.com> |
| 9 | */ |
| 10 | public class TField { |
| 11 | public TField() {} |
| 12 | |
| 13 | public TField(String n, TType t, int i) { |
Mark Slee | f3c322b | 2006-06-26 23:52:22 +0000 | [diff] [blame] | 14 | this(n, t, new Int32(i)); |
Mark Slee | 83c52a8 | 2006-06-07 06:51:18 +0000 | [diff] [blame] | 15 | } |
| 16 | |
Mark Slee | f3c322b | 2006-06-26 23:52:22 +0000 | [diff] [blame] | 17 | public TField(String n, TType t, Int32 i) { |
Mark Slee | 83c52a8 | 2006-06-07 06:51:18 +0000 | [diff] [blame] | 18 | name = n; |
| 19 | type = t; |
| 20 | id = i; |
| 21 | } |
| 22 | |
| 23 | public String name = ""; |
| 24 | public TType type = TType.STOP; |
Mark Slee | f3c322b | 2006-06-26 23:52:22 +0000 | [diff] [blame] | 25 | public Int32 id = new Int32(); |
Mark Slee | 83c52a8 | 2006-06-07 06:51:18 +0000 | [diff] [blame] | 26 | } |