(D genericDeclaration, String name, Type[] bounds)
| 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() { |
nothing calls this directly
no test coverage detected