Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/Server/src/org/litesoft/testplan/TestPlanParserActionFactoryInputFormTextField.java

Diff revisions: vs.
  @@ -3,16 +3,13 @@
3 3
4 4 import org.litesoft.GWT.client.dev.ui.testplan.*;
5 5
6 - public class TestPlanParserActionFactoryInputFormTextField extends AbstractTestPlanParserActionFactoryFormInput
7 - {
8 - public TestPlanParserActionFactoryInputFormTextField()
9 - {
6 + public class TestPlanParserActionFactoryInputFormTextField extends AbstractTestPlanParserActionFactoryFormInput {
7 + public TestPlanParserActionFactoryInputFormTextField() {
10 8 super( TestPlanActionInputFormTextField.FORM );
11 9 }
12 10
13 11 @Override
14 - protected TestPlanAction createAction( String pLabel, String pTooltip, Integer pNth, String pInputText )
15 - {
12 + protected TestPlanAction createAction( String pLabel, String pTooltip, Integer pNth, String pInputText ) {
16 13 return new TestPlanActionInputFormTextField( pLabel, pTooltip, pNth, pInputText );
17 14 }
18 15 }