}
public void bind(ComponentMapper mapper, Object controller) {
Method[] methods = controller.getClass().getMethods();
for (Method method : methods) {
DataSource dataSource = method.getAnnotation(DataSource.class);
if (dataSource != null) {
bindDataSource(mapper, controller, method, dataSource);
}
EventHandler eventHandler = method