Subversion Repository Public Repository

litesoft

Diff Revisions 487 vs 488 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/view/QBEScreenView.java

Diff revisions: vs.
  @@ -2,7 +2,6 @@
2 2 package org.litesoft.GWT.client.view;
3 3
4 4 import org.litesoft.GWT.client.widgets.*;
5 - import org.litesoft.uispecification.*;
6 5
7 6 import com.google.gwt.user.client.ui.*;
8 7
  @@ -10,29 +9,12 @@
10 9 {
11 10 private QBEscreenSupport mQBEscreenSupport = new QBEscreenSupport();
12 11
13 - private void initialSetUp()
12 + public QBEScreenView( CO pCO )
14 13 {
14 + super( pCO );
15 15 mContent.add( mQBEscreenSupport );
16 16 }
17 17
18 - public QBEScreenView()
19 - {
20 - super();
21 - initialSetUp();
22 - }
23 -
24 - public QBEScreenView( String pSection, ViewDef pViewDef )
25 - {
26 - super( pSection, pViewDef );
27 - initialSetUp();
28 - }
29 -
30 - public QBEScreenView( ViewDef pViewDef )
31 - {
32 - super( pViewDef );
33 - initialSetUp();
34 - }
35 -
36 18 protected SizeableVerticalPanel getQBEleft()
37 19 {
38 20 return mQBEscreenSupport.getQBEleft();