Subversion Repository Public Repository

litesoft

Diff Revisions 954 vs 955 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/testplan/TestPlanActionFormInput.java

Diff revisions: vs.
  @@ -4,29 +4,26 @@
4 4 import org.litesoft.GWT.client.dev.ui.inspection.*;
5 5 import org.litesoft.GWT.client.ui.inspection.*;
6 6
7 - public class TestPlanActionFormInput extends AbstractTestPlanActionInputForm
8 - {
7 + public class TestPlanActionFormInput extends AbstractTestPlanActionInputForm {
9 8 private static final long serialVersionUID = 1L;
10 9
11 10 public static final String FORM = "FormInput";
12 11
13 12 @SuppressWarnings({"deprecation", "UnusedDeclaration"}) @Deprecated /** for Serialization */
14 - protected TestPlanActionFormInput()
15 - {
13 + protected TestPlanActionFormInput() {
16 14 }
17 15
18 - public TestPlanActionFormInput( String pLabel, String pTooltip, Integer pNth, String pInputText )
19 - {
16 + public TestPlanActionFormInput( String pLabel, String pTooltip, Integer pNth, String pInputText ) {
20 17 super( pLabel, pTooltip, pNth, pInputText );
21 18 }
22 19
23 - public String form()
24 - {
20 + @Override
21 + public String form() {
25 22 return FORM;
26 23 }
27 24
28 - protected WidgetSelector createWidgetSelector()
29 - {
25 + @Override
26 + protected WidgetSelector createWidgetSelector() {
30 27 return new FormInputSelector( getLabel(), getTooltip(), getNth() );
31 28 }
32 29 }