Subversion Repository Public Repository

litesoft

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

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