我正在尝试使用 gwt 编辑器框架,以便我可以让我的视图 ( SingleReplayView
) 编辑我的 bean SingleClaimId
。
这是我的视图类:
public class SingleReplayView extends ViewWithUiHandlers<SingleReplayUiHandlers> implements SingleReplayPresenter.MyView, Editor<ReplayClaimId>
{
interface Binder extends UiBinder<Widget, SingleReplayView> {
}
public interface SingleReplayDriver extends SimpleBeanEditorDriver<ReplayClaimId, SingleReplayView> {}
protected static SingleReplayDriver driver = GWT.create(SingleReplayDriver.class);
@UiField
MaterialTextBox claimId;
@UiField
MaterialComboBox originalEnvironment;
@UiField
@Path("replayEnvironment")
MaterialComboBox replayEnvironment;
@UiField
@Path("bmsDisabled")
MaterialRadioButton bmsDisabled;
@UiField
@Path("bmsEnabledWithInjection")
MaterialRadioButton bmsEnabledWithInjection;
@UiField
@Path("bmsEnabledWithNoInjection")
MaterialRadioButton bmsEnabledWithNoInjection;
@UiField
@Path("tariffEnabled")
MaterialCheckBox tariffEnabled;
@UiField
@Path("humDisabled")
MaterialCheckBox humDisable;
@Inject
SingleReplayView(Binder uiBinder) {
initWidget(uiBinder.createAndBindUi(this));
driver.initialize(this);
}
@UiHandler("singleSubmitButton")
public void submit(ClickEvent event) {
ReplayClaimId replayClaimId = driver.flush();
MaterialToast.fireToast(replayClaimId.getClaimId());
}
}
和我的豆类
public class ReplayClaimId implements IsSerializable {
private String claimId;
private String originalEnvironment;
private String replayEnvironment;
private Boolean bmsDisabled;
private Boolean bmsEnabledWithInjection;
private Boolean bmsEnabledWithNoInjection;
private Boolean tariffEnabled;
private Boolean humDisabled;
//with setters and getters
}
当我尝试编译代码时出现错误
The type gwt.material.design.addins.client.combobox.MaterialComboBox is assignable to the raw Editor type, but a type parameterization is required.
[INFO] [ERROR] Errors in 'SingleReplayView.java'
可以帮忙吗?