Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/SizeableTitledBorderedVerticalPanel.java

Diff revisions: vs.
  @@ -6,66 +6,55 @@
6 6
7 7 import com.google.gwt.user.client.ui.*;
8 8
9 - public class SizeableTitledBorderedVerticalPanel extends AbstractSizeableVerticalRegularPanel
10 - {
11 - protected SizeableTitledBorderedVerticalPanel( boolean pOverflowHidden, String pTitle, String pStyle )
12 - {
9 + public class SizeableTitledBorderedVerticalPanel extends AbstractSizeableVerticalRegularPanel {
10 + protected SizeableTitledBorderedVerticalPanel( boolean pOverflowHidden, String pTitle, String pStyle ) {
13 11 initializeElements( getHelper().create_OeWidget_SeFieldSet_IeTableToTBody( pOverflowHidden, pTitle ), //
14 12 pStyle );
15 13 }
16 14
17 15 @Deprecated
18 - public SizeableTitledBorderedVerticalPanel( boolean pOverflowHidden, String pTitle )
19 - {
16 + public SizeableTitledBorderedVerticalPanel( boolean pOverflowHidden, String pTitle ) {
20 17 this( pOverflowHidden, pTitle, "LayoutSizeableTitledBorderedVerticalPanel" );
21 18 }
22 19
23 - public SizeableTitledBorderedVerticalPanel( String pTitle )
24 - {
20 + public SizeableTitledBorderedVerticalPanel( String pTitle ) {
25 21 this( true, pTitle );
26 22 }
27 23
28 - public SizeableTitledBorderedVerticalPanel( String pTitle, UiFont pTitleFont )
29 - {
24 + public SizeableTitledBorderedVerticalPanel( String pTitle, UiFont pTitleFont ) {
30 25 this( pTitle );
31 26 ApplyFont.to( pTitleFont, getHelper().getFieldSetLegend() );
32 27 }
33 28
34 29 @Deprecated
35 - public SizeableTitledBorderedVerticalPanel( boolean pOverflowHidden, String pTitle, UiFont pTitleFont )
36 - {
30 + public SizeableTitledBorderedVerticalPanel( boolean pOverflowHidden, String pTitle, UiFont pTitleFont ) {
37 31 this( pOverflowHidden, pTitle );
38 32 ApplyFont.to( pTitleFont, getHelper().getFieldSetLegend() );
39 33 }
40 34
41 - public SizeableTitledBorderedVerticalPanel style( String pStyleName )
42 - {
35 + public SizeableTitledBorderedVerticalPanel style( String pStyleName ) {
43 36 addStyleName( pStyleName );
44 37 return this;
45 38 }
46 39
47 40 //****** Implementation Code Block to support delegation to AbsoluteSizeHelper
48 41
49 - public SizeableTitledBorderedVerticalPanel stretchable()
50 - {
42 + public SizeableTitledBorderedVerticalPanel stretchable() {
51 43 LLstretchable();
52 44 return this;
53 45 }
54 46
55 - public SizeableTitledBorderedVerticalPanel stretchableVertically()
56 - {
47 + public SizeableTitledBorderedVerticalPanel stretchableVertically() {
57 48 LLstretchableVertically();
58 49 return this;
59 50 }
60 51
61 - public SizeableTitledBorderedVerticalPanel stretchableHorizontally()
62 - {
52 + public SizeableTitledBorderedVerticalPanel stretchableHorizontally() {
63 53 LLstretchableHorizontally();
64 54 return this;
65 55 }
66 56
67 - public SizeableTitledBorderedVerticalPanel setLegendAlignment( HasHorizontalAlignment.HorizontalAlignmentConstant pAlign )
68 - {
57 + public SizeableTitledBorderedVerticalPanel setLegendAlignment( HasHorizontalAlignment.HorizontalAlignmentConstant pAlign ) {
69 58 CommonElementHelper.setTDalign( getHelper().getFieldSetLegend(), pAlign );
70 59 return this;
71 60 }