blob: c05fdd867f25a4dc47435a15fa28ae9d8e85c677 [file] [log] [blame]
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.sample.expenses.client.place;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.requestfactory.shared.EntityProxy;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.Widget;
import com.google.gwt.view.client.HasData;
/**
* Abstract implementation of ProxyListView.
*
* @param <P> the type of the proxy
*/
public abstract class AbstractProxyListView<P extends EntityProxy> extends
Composite implements ProxyListView<P> {
private HasData<P> display;
private Delegate<P> delegate;
public HasData<P> asHasData() {
return display;
}
@Override
public AbstractProxyListView<P> asWidget() {
return this;
}
public void setDelegate(final Delegate<P> delegate) {
this.delegate = delegate;
}
protected void init(Widget root, HasData<P> display, Button newButton) {
super.initWidget(root);
this.display = display;
newButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
delegate.createClicked();
}
});
}
@Override
protected void initWidget(Widget widget) {
throw new UnsupportedOperationException(
"AbstractRecordListView must be initialized via "
+ "init(Widget, HasData<P>, Button) ");
}
}