MCPcopy Create free account
hub / github.com/jOOQ/jOOQ / FieldProxy

Method FieldProxy

jOOQ/src/main/java/org/jooq/impl/FieldProxy.java:88–98  ·  view source on GitHub ↗
(AbstractField<T> delegate, int position)

Source from the content-addressed store, hash-verified

86 boolean resolved;
87
88 FieldProxy(AbstractField<T> delegate, int position) {
89 super(
90 delegate.getQualifiedName(),
91 new DataTypeProxy<>((AbstractDataType<T>) delegate.getDataType()),
92 delegate.getCommentPart(),
93 delegate.getBinding()
94 );
95
96 this.delegate = delegate;
97 this.position = position;
98 }
99
100 @Override
101 public final boolean hasName(Context<?> ctx) {

Callers

nothing calls this directly

Calls 4

getQualifiedNameMethod · 0.65
getDataTypeMethod · 0.65
getCommentPartMethod · 0.65
getBindingMethod · 0.65

Tested by

no test coverage detected