| package com.facebook.thrift.protocol; | |
| /** | |
| * Helper class that encapsulates set metadata. | |
| * | |
| * @author Mark Slee <mcslee@facebook.com> | |
| */ | |
| public class TSet { | |
| public TSet() {} | |
| public TSet(byte t, int s) { | |
| elemType = t; | |
| size = s; | |
| } | |
| public byte elemType = TType.STOP; | |
| public int size = 0; | |
| } |