Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/testplan/TestPlanActionInputFormTimestampPicker.java

Diff revisions: vs.
  @@ -1,43 +1,43 @@
1 - // This Source Code is in the Public Domain per: http://unlicense.org
2 - package org.litesoft.GWT.client.dev.ui.testplan;
3 -
4 - import org.litesoft.GWT.client.dev.ui.inspection.*;
5 - import org.litesoft.GWT.client.ui.inspection.*;
6 - import org.litesoft.GWT.forms.client.components.impls.input.*;
7 -
8 - import com.google.gwt.user.client.ui.*;
9 -
10 - public class TestPlanActionInputFormTimestampPicker extends AbstractTestPlanActionInputForm
11 - {
12 - private static final long serialVersionUID = 1L;
13 -
14 - public static final String FORM = "InputFormTimestampPicker";
15 -
16 - @SuppressWarnings({"deprecation", "UnusedDeclaration"}) @Deprecated /** for Serialization */
17 - protected TestPlanActionInputFormTimestampPicker()
18 - {
19 - }
20 -
21 - public TestPlanActionInputFormTimestampPicker( String pLabel, String pTooltip, Integer pNth, String pInputText )
22 - {
23 - super( pLabel, pTooltip, pNth, pInputText );
24 - }
25 -
26 - @Override
27 - public String form()
28 - {
29 - return FORM;
30 - }
31 -
32 - protected WidgetSelector createWidgetSelector()
33 - {
34 - return new FormInputSelector( getLabel(), getTooltip(), getNth() )
35 - {
36 - @Override
37 - public boolean isAcceptable( Widget pWidget )
38 - {
39 - return (pWidget instanceof FormTimestampPicker) && super.isAcceptable( pWidget );
40 - }
41 - };
42 - }
43 - }
1 + // This Source Code is in the Public Domain per: http://unlicense.org
2 + package org.litesoft.GWT.client.dev.ui.testplan;
3 +
4 + import org.litesoft.GWT.client.dev.ui.inspection.*;
5 + import org.litesoft.GWT.client.ui.inspection.*;
6 + import org.litesoft.GWT.forms.client.components.impls.input.*;
7 +
8 + import com.google.gwt.user.client.ui.*;
9 +
10 + public class TestPlanActionInputFormTimestampPicker extends AbstractTestPlanActionInputForm
11 + {
12 + private static final long serialVersionUID = 1L;
13 +
14 + public static final String FORM = "InputFormTimestampPicker";
15 +
16 + @SuppressWarnings({"deprecation", "UnusedDeclaration"}) @Deprecated /** for Serialization */
17 + protected TestPlanActionInputFormTimestampPicker()
18 + {
19 + }
20 +
21 + public TestPlanActionInputFormTimestampPicker( String pLabel, String pTooltip, Integer pNth, String pInputText )
22 + {
23 + super( pLabel, pTooltip, pNth, pInputText );
24 + }
25 +
26 + @Override
27 + public String form()
28 + {
29 + return FORM;
30 + }
31 +
32 + protected WidgetSelector createWidgetSelector()
33 + {
34 + return new FormInputSelector( getLabel(), getTooltip(), getNth() )
35 + {
36 + @Override
37 + public boolean isAcceptable( Widget pWidget )
38 + {
39 + return (pWidget instanceof FormTimestampPicker) && super.isAcceptable( pWidget );
40 + }
41 + };
42 + }
43 + }