(Name name, DataType<T> type)
| 96 | private static final Clause[] CLAUSES = { FIELD }; |
| 97 | |
| 98 | AbstractField(Name name, DataType<T> type) { |
| 99 | this(name, type, null); |
| 100 | } |
| 101 | |
| 102 | AbstractField(Name name, DataType<T> type, Comment comment) { |
| 103 | this(name, type, comment, type.getBinding()); |
nothing calls this directly
no test coverage detected