예제 #1
0
 public ConstructorBuilder addTypeParameter(String name, TypeMirror... bounds) {
   exe.typeParameters.add(typeParamBuilder.addTypeParameter(name, bounds));
   return this;
 }
예제 #2
0
 public ConstructorBuilder addTypeParameter(TypeParameterElement param) {
   exe.typeParameters.add(typeParamBuilder.addTypeParameter(param));
   return this;
 }
예제 #3
0
 public ConstructorBuilder addTypeParameter(String name, CharSequence... bounds) {
   exe.typeParameters.add(typeParamBuilder.addTypeParameter(name, bounds));
   return this;
 }