Method
UDTFieldImpl
(Name name, DataType<T> type, UDT<R> udt, Comment comment, Binding<?, T> binding)
Source from the content-addressed store, hash-verified
| 58 | private final UDT<R> udt; |
| 59 | |
| 60 | UDTFieldImpl(Name name, DataType<T> type, UDT<R> udt, Comment comment, Binding<?, T> binding) { |
| 61 | super(name, type, comment, binding); |
| 62 | |
| 63 | this.udt = udt; |
| 64 | |
| 65 | // [#1199] The public API of UDT returns immutable field lists |
| 66 | if (udt instanceof UDTImpl<?> u) |
| 67 | u.fields0().add(this); |
| 68 | } |
| 69 | |
| 70 | @Override |
| 71 | public final UDT<R> getUDT() { |
Callers
nothing calls this directly
Tested by
no test coverage detected