チェックボックスフィールド用の ValueBoxEditorDecorator のようなものが欲しいです。CheckBox は ValueBoxBase を拡張しないため、独自に作成する必要があります。
そこで、ValueBoxEditorDecorator コードを新しいカスタム クラスに適合させることからコーディングを開始します。
public class CheckBoxDecorator extends Composite implements HasEditorErrors<CheckBox>, IsEditor<LeafValueEditor<Boolean>> {
...
The code here is the adaptation of ValueBoxEditorDecorator
...
}
残念ながら、次のランタイム エラーが発生して動作しません。
[ERROR] [website] - Errors in 'generated://50642882199077F9FB1890056A90477A/com/test/client/core/MyView_RequestFactoryEditorDelegate.java'
[ERROR] [website] - Line 112: The constructor MyView_acceptTerms_Context(MyvalueProxy, CheckBoxDecorator, String) is undefined
よろしくお願いします。