Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -2,23 +2,20 @@
2 2 package org.litesoft.GWT.client.dev.ui.testplan;
3 3
4 4 import org.litesoft.GWT.client.view.*;
5 - import org.litesoft.core.*;
5 + import org.litesoft.commonfoundation.independence.*;
6 6 import org.litesoft.testplan.*;
7 7
8 - public class TestPlanActionHomeNextUser implements TestPlanAction
9 - {
8 + public class TestPlanActionHomeNextUser implements TestPlanAction {
10 9 private static final long serialVersionUID = 1L;
11 10
12 11 @Override
13 - public String toString()
14 - {
12 + public String toString() {
15 13 return "Home & Next User";
16 14 }
17 15
18 - public boolean execute( Object pClickHandlerSharedObject )
19 - {
20 - ClientContext zContext = (ClientContext) pClickHandlerSharedObject;
21 - zContext.get( NextDemoUserRequestHandler.class ).nextDemoUser();
16 + @Override
17 + public boolean execute() {
18 + Instance.of( NextDemoUserRequestHandler.class ).nextDemoUser();
22 19 return true;
23 20 }
24 21 }