Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.temp.client.foundation.widget.input;

import com.google.gwt.user.client.ui.CheckBox;
import com.temp.client.foundation.widget.input.fieldsupport.AbstractGeneratedInputField;
import com.temp.client.foundation.widget.input.fieldsupport.InputFieldAccessor;
import com.temp.client.foundation.widget.input.support.CheckBoxValueAdapter;

public class CheckBoxInputField extends AbstractGeneratedInputField<Boolean, CheckBoxInputField> {
    private static final String STYLE = "field-checkbox";

    private final CheckBox field = new CheckBox();

    @Override
    protected InputFieldAccessor<Boolean> createBaseAccessor() {
        return createBaseAccessor(new CheckBoxValueAdapter(field), field, STYLE, field);
    }
}

Commits for litesoft/trunk/GWT_Sandbox/FormEngine/src/com/temp/client/foundation/widget/input/CheckBoxInputField.java

Diff revisions: vs.
Revision Author Commited Message
632 Diff Diff GeorgeS picture GeorgeS Wed 18 Apr, 2012 18:11:29 +0000
630 GeorgeS picture GeorgeS Tue 17 Apr, 2012 20:22:17 +0000