Esempio n. 1
0
 public FooBar(
     Integer foo,
     String bar,
     Nested baz,
     Long qux,
     List<Float> fred,
     Double daisy,
     List<FooBar> nested,
     FooBarBazEnum ext,
     List<FooBarBazEnum> rep,
     ByteString unknownFields) {
   super(unknownFields);
   this.foo = foo;
   this.bar = bar;
   this.baz = baz;
   this.qux = qux;
   this.fred = WireInternal.immutableCopyOf("fred", fred);
   this.daisy = daisy;
   this.nested = WireInternal.immutableCopyOf("nested", nested);
   this.ext = ext;
   this.rep = WireInternal.immutableCopyOf("rep", rep);
 }
Esempio n. 2
0
 public More(List<Integer> serial, ByteString unknownFields) {
   super(unknownFields);
   this.serial = WireInternal.immutableCopyOf("serial", serial);
 }