MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / ClassParameter

Class ClassParameter

arrays/ParameterizedArrayType.java:6–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4// Visit http://OnJava8.com for more book information.
5
6class ClassParameter<T> {
7 public T[] f(T[] arg) { return arg; }
8}
9
10class MethodParameter {
11 public static <T> T[] f(T[] arg) { return arg; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected