Exemplo n.º 1
0
 public ShowStyleKey.Builder SetKey(int index, StyleKeyVal value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.key_[index] = value;
     return(this);
 }
Exemplo n.º 2
0
 public ShowStyleKey.Builder AddKey(StyleKeyVal value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.key_.Add(value);
     return(this);
 }