Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.temp.client.foundation.widget.input.fieldsupport;

import com.temp.client.foundation.widget.*;
import com.temp.client.foundation.widget.input.support.*;

public class CompleteInputFieldAccessor<T> extends InputFieldAccessor<T>
{
    private final TextLabel labelLabel;
    private final TextLabel extendedLabel;
    private final TextLabel exampleLabel;
    private final TextLabel errorLabel;
    private final HelpWidget helpWidget;

    public CompleteInputFieldAccessor( TextLabel labelLabel, TextLabel extendedLabel, InputFieldAccessor<T> inputFieldAccessor, HelpWidget helpWidget, TextLabel exampleLabel, TextLabel errorLabel )
    {
        super( inputFieldAccessor.getInput(), inputFieldAccessor.getValidator(), inputFieldAccessor.getInputWidget() );
        this.helpWidget = helpWidget;
        this.errorLabel = errorLabel;
        this.labelLabel = labelLabel;
        this.extendedLabel = extendedLabel;
        this.exampleLabel = exampleLabel;
    }

    public TextLabel getLabelLabel()
    {
        return labelLabel;
    }

    public TextLabel getExtendedLabel()
    {
        return extendedLabel;
    }

    public TextLabel getExampleLabel()
    {
        return exampleLabel;
    }

    public TextLabel getErrorLabel()
    {
        return errorLabel;
    }

    public HelpWidget getHelpWidget()
    {
        return helpWidget;
    }
}

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

Diff revisions: vs.
Revision Author Commited Message
626 GeorgeS picture GeorgeS Wed 11 Apr, 2012 19:39:41 +0000