blob: e9389d73da1ba829e2e5fa1046143cd982e99968 [file] [log] [blame]
// "Replace with lambda" "false"
class DbTableBinder {
public Binder build() {
return new Bin<caret>der<DbTable>() {
public void bind(A q, DbTable dbTable) {
q.bind("name", dbTable.name);
}
};
}
}
class DbTable {
String name;
}
interface Binder <ArgType> {
void bind(A<?> sqlStatement, ArgType argType);
}
interface A<P> {
void bind(String s, String p);
}