MCPcopy Create free account
hub / github.com/antlr/codebuff / TypeVariableImpl

Method TypeVariableImpl

output/java_guava/1.4.18/Types.java:412–417  ·  view source on GitHub ↗
(D genericDeclaration, String name, Type[] bounds)

Source from the content-addressed store, hash-verified

410 private final ImmutableList<Type> bounds;
411
412 TypeVariableImpl(D genericDeclaration, String name, Type[] bounds) {
413 disallowPrimitiveType(bounds, "bound for type variable");
414 this.genericDeclaration = checkNotNull(genericDeclaration);
415 this.name = checkNotNull(name);
416 this.bounds = ImmutableList.copyOf(bounds);
417 }
418
419
420 public Type[] getBounds() {

Callers

nothing calls this directly

Calls 3

copyOfMethod · 0.95
disallowPrimitiveTypeMethod · 0.45
checkNotNullMethod · 0.45

Tested by

no test coverage detected