Subversion Repository Public Repository

litesoft

Diff Revisions 565 vs 948 for /trunk/Java/DATT/src/org/litesoft/datt/client/ui/views/stories/StoryTasksFactory.java

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