Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -6,49 +6,40 @@
6 6
7 7 import com.google.gwt.user.client.ui.*;
8 8
9 - public class SizeableTitledBorderedHorizontalSplitPairPanel extends AbstractSizeableHorizontalSplitPairPanel
10 - {
11 - public SizeableTitledBorderedHorizontalSplitPairPanel( String pTitle, UiFont pTitleFont )
12 - {
9 + public class SizeableTitledBorderedHorizontalSplitPairPanel extends AbstractSizeableHorizontalSplitPairPanel {
10 + public SizeableTitledBorderedHorizontalSplitPairPanel( String pTitle, UiFont pTitleFont ) {
13 11 this( pTitle );
14 12 ApplyFont.to( pTitleFont, getHelper().getFieldSetLegend() );
15 13 }
16 14
17 - public SizeableTitledBorderedHorizontalSplitPairPanel( String pTitle )
18 - {
15 + public SizeableTitledBorderedHorizontalSplitPairPanel( String pTitle ) {
19 16 this( pTitle, "LayoutSizeableTitledBorderedHorizontalSplitPairPanel" );
20 17 }
21 18
22 - protected SizeableTitledBorderedHorizontalSplitPairPanel( String pTitle, String pStyle )
23 - {
19 + protected SizeableTitledBorderedHorizontalSplitPairPanel( String pTitle, String pStyle ) {
24 20 initializeElements( getHelper().create_OeWidget_SeFieldSet_IeTableToTR( true, pTitle ), pStyle );
25 21 }
26 22
27 - public SizeableTitledBorderedHorizontalSplitPairPanel style( String pStyleName )
28 - {
23 + public SizeableTitledBorderedHorizontalSplitPairPanel style( String pStyleName ) {
29 24 addStyleName( pStyleName );
30 25 return this;
31 26 }
32 27
33 - public SizeableTitledBorderedHorizontalSplitPairPanel favorFirstWidget()
34 - {
28 + public SizeableTitledBorderedHorizontalSplitPairPanel favorFirstWidget() {
35 29 setFavorFirstWidget();
36 30 return this;
37 31 }
38 32
39 - public SizeableTitledBorderedHorizontalSplitPairPanel stretchable()
40 - {
33 + public SizeableTitledBorderedHorizontalSplitPairPanel stretchable() {
41 34 return stretchableVertically();
42 35 }
43 36
44 - public SizeableTitledBorderedHorizontalSplitPairPanel stretchableVertically()
45 - {
37 + public SizeableTitledBorderedHorizontalSplitPairPanel stretchableVertically() {
46 38 LLstretchableVertically();
47 39 return this;
48 40 }
49 41
50 - public SizeableTitledBorderedHorizontalSplitPairPanel setLegendAlignment( HasHorizontalAlignment.HorizontalAlignmentConstant pAlign )
51 - {
42 + public SizeableTitledBorderedHorizontalSplitPairPanel setLegendAlignment( HasHorizontalAlignment.HorizontalAlignmentConstant pAlign ) {
52 43 CommonElementHelper.setTDalign( getHelper().getFieldSetLegend(), pAlign );
53 44 return this;
54 45 }