package org.ovirt.engine.ui.webadmin.section.main.presenter.popup.host; import org.ovirt.engine.ui.common.presenter.AbstractModelBoundPopupPresenterWidget; import org.ovirt.engine.ui.uicommonweb.models.ConfirmationModel; import com.google.gwt.event.shared.EventBus; import com.google.inject.Inject; public class ManualFencePopupPresenterWidget extends AbstractModelBoundPopupPresenterWidget<ConfirmationModel, ManualFencePopupPresenterWidget.ViewDef> { public interface ViewDef extends AbstractModelBoundPopupPresenterWidget.ViewDef<ConfirmationModel> { } @Inject public ManualFencePopupPresenterWidget(EventBus eventBus, ViewDef view) { super(eventBus, view); } }