mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-04 20:28:00 +08:00
Use protected modifiers for DeclarativeColumnGenerator fields (#805)
This commit is contained in:
parent
c358128ba6
commit
dd9d151d59
@ -35,11 +35,11 @@ public class DeclarativeColumnGenerator implements Table.ColumnGenerator {
|
|||||||
|
|
||||||
public static final String NAME = "cuba_DeclarativeColumnGenerator";
|
public static final String NAME = "cuba_DeclarativeColumnGenerator";
|
||||||
|
|
||||||
private final String methodName;
|
protected final String methodName;
|
||||||
private final Table table;
|
protected final Table table;
|
||||||
|
|
||||||
private Method method;
|
protected Method method;
|
||||||
private boolean unableToFindMethod = false;
|
protected boolean unableToFindMethod = false;
|
||||||
|
|
||||||
public DeclarativeColumnGenerator(Table table, String methodName) {
|
public DeclarativeColumnGenerator(Table table, String methodName) {
|
||||||
this.table = table;
|
this.table = table;
|
||||||
@ -100,4 +100,4 @@ public class DeclarativeColumnGenerator implements Table.ColumnGenerator {
|
|||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user