(TypeId<V> type, String name)
| 116 | } |
| 117 | |
| 118 | public <V> FieldId<T, V> getField(TypeId<V> type, String name) { |
| 119 | return new FieldId<>(this, type, name); |
| 120 | } |
| 121 | |
| 122 | public MethodId<T, Void> getConstructor(TypeId<?>... parameters) { |
| 123 | return new MethodId<>(this, VOID, "<init>", new TypeList(parameters)); |
no outgoing calls
no test coverage detected