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

Method TypeVariableImpl

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

Source from the content-addressed store, hash-verified

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