コード例 #1
0
 public Builder structType(StructElement.Type structType)
 {
     this.structType = Preconditions.checkNotNull(structType, "structType");
     return(this);
 }
コード例 #2
0
 Builder(StructType type)
 {
     super(type);
     this.structType = type.structType;
     this.fields     = type.fields;
 }