Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/InitFrom/src/org/litesoft/initfrom/client/ui/views/admin/UsersFactory.java

Diff revisions: vs.
  @@ -5,19 +5,16 @@
5 5 import org.litesoft.initfrom.client.*;
6 6 import org.litesoft.uispecification.*;
7 7
8 - public class UsersFactory extends AbstractObjectUrlScreenViewFactory
9 - {
8 + public class UsersFactory extends AbstractObjectUrlScreenViewFactory {
10 9 private static final String SECTION = ViewDefs.HOME_SECTION_ADMIN;
11 10 private static final ViewDef VIEW_DEF = ViewDefs.ADMIN_USERS;
12 11
13 - public UsersFactory()
14 - {
12 + public UsersFactory() {
15 13 super( VIEW_DEF );
16 14 }
17 15
18 16 @Override
19 - public ScreenView createScreen( ClientContext pClientContext, UriFragmentIdParams pParams )
20 - {
17 + public ScreenView createScreen( ClientContext pClientContext, UriFragmentIdParams pParams ) {
21 18 return new Users( SECTION, VIEW_DEF, decodeParams( pParams ) );
22 19 }
23 20 }