blob: 70e9c6d1ba690961bbda52f1ebc71001010994a9 [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.editor.client.HasEditorErrors;
import com.google.gwt.requestfactory.client.RequestFactoryEditorDriver;
import com.google.gwt.requestfactory.shared.EntityProxy;
import com.google.gwt.user.client.ui.IsWidget;
/**
* Implemented by views that edit {@link EntityProxy}s.
*
* @param <P> the type of the proxy
* @param <V> the type of this ProxyEditView, required to allow
* {@link #createEditorDriver()} to be correctly typed
*/
public interface ProxyEditView<P extends EntityProxy, V extends ProxyEditView<P, V>>
extends IsWidget, HasEditorErrors<P> {
/**
* @return a new {@link RequestFactoryEditorDriver} initialized to run this
* editor
*/
RequestFactoryEditorDriver<P, V> createEditorDriver();
/**
* Implemented by the owner of the view.
*/
interface Delegate {
void cancelClicked();
void saveClicked();
}
void setDelegate(Delegate delegate);
void setEnabled(boolean b);
}