Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -7,35 +7,29 @@
7 7
8 8 import com.google.gwt.user.client.ui.*;
9 9
10 - public class TestPlanActionInputFormCheckBox extends AbstractTestPlanActionInputForm
11 - {
10 + public class TestPlanActionInputFormCheckBox extends AbstractTestPlanActionInputForm {
12 11 private static final long serialVersionUID = 1L;
13 12
14 13 public static final String FORM = "InputFormCheckBox";
15 14
16 15 @SuppressWarnings({"deprecation", "UnusedDeclaration"}) @Deprecated /** for Serialization */
17 - protected TestPlanActionInputFormCheckBox()
18 - {
16 + protected TestPlanActionInputFormCheckBox() {
19 17 }
20 18
21 - public TestPlanActionInputFormCheckBox( String pLabel, String pTooltip, Integer pNth, String pInputText )
22 - {
19 + public TestPlanActionInputFormCheckBox( String pLabel, String pTooltip, Integer pNth, String pInputText ) {
23 20 super( pLabel, pTooltip, pNth, pInputText );
24 21 }
25 22
26 23 @Override
27 - public String form()
28 - {
24 + public String form() {
29 25 return FORM;
30 26 }
31 27
32 - protected WidgetSelector createWidgetSelector()
33 - {
34 - return new FormInputSelector( getLabel(), getTooltip(), getNth() )
35 - {
28 + @Override
29 + protected WidgetSelector createWidgetSelector() {
30 + return new FormInputSelector( getLabel(), getTooltip(), getNth() ) {
36 31 @Override
37 - public boolean isAcceptable( Widget pWidget )
38 - {
32 + public boolean isAcceptable( Widget pWidget ) {
39 33 return (pWidget instanceof FormCheckBox) && super.isAcceptable( pWidget );
40 34 }
41 35 };