Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 801 for /trunk/Java/GWT/Server/src/org/litesoft/testplan/TestPlanParserActionFactoryClickTableHeader.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import org.litesoft.GWT.client.*;
5 5 import org.litesoft.GWT.client.dev.ui.testplan.*;
6 - import org.litesoft.util.*;
6 + import org.litesoft.core.typeutils.*;
7 7 import org.litesoft.xml.*;
8 8
9 9 public class TestPlanParserActionFactoryClickTableHeader implements TestPlanActionFactory
  @@ -14,9 +14,9 @@
14 14 public TestPlanAction parse( PullParserProxy pParser )
15 15 {
16 16 pParser.validateIsStartTag( TAG_NAME );
17 - String zStrNth = Utils.noEmpty( pParser.getAttributeValue( "nth" ) );
18 - int zCol = Integer.parseInt( Utils.noEmpty( pParser.getAttributeValue( "col" ) ) );
19 - String zModifiers = Utils.noEmpty( pParser.getAttributeValue( "modifiers" ) );
17 + String zStrNth = Strings.noEmpty( pParser.getAttributeValue( "nth" ) );
18 + int zCol = Integer.parseInt( Strings.noEmpty( pParser.getAttributeValue( "col" ) ) );
19 + String zModifiers = Strings.noEmpty( pParser.getAttributeValue( "modifiers" ) );
20 20 pParser.validateNextIsEndTag( TAG_NAME );
21 21 KeyboardKeyModifier zKeyboardKeyModifier = (zModifiers != null) ? KeyboardKeyModifier.valueOf( zModifiers ) : null;
22 22 Integer zNth = (zStrNth != null) ? new Integer( zStrNth ) : null;