Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -5,36 +5,30 @@
5 5
6 6 import com.google.gwt.user.client.*;
7 7
8 - public abstract class ClippingSimplePanel extends AbstractSizeableSimplePanel
9 - {
10 - public ClippingSimplePanel( String pNoSizeAffectingCSS_StyleClassname )
11 - {
8 + public abstract class ClippingSimplePanel extends AbstractSizeableSimplePanel {
9 + public ClippingSimplePanel( String pNoSizeAffectingCSS_StyleClassname ) {
12 10 initializeElements( getHelper().create_OeSeIeOverflowHiddenSingleDivSandwich(), pNoSizeAffectingCSS_StyleClassname );
13 11 LLstretchable();
14 12 }
15 13
16 14 // vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv No Additional Style Support vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
17 15 @Override
18 - public void setStylePrimaryName( String style )
19 - {
16 + public void setStylePrimaryName( String style ) {
20 17 throw new IllegalStateException( "No Style Support" );
21 18 }
22 19
23 20 @Override
24 - public void addStyleDependentName( String styleSuffix )
25 - {
21 + public void addStyleDependentName( String styleSuffix ) {
26 22 throw new IllegalStateException( "No Style Support" );
27 23 }
28 24
29 25 @Override
30 - public void addStyleName( String style )
31 - {
26 + public void addStyleName( String style ) {
32 27 throw new IllegalStateException( "No Style Support" );
33 28 }
34 29
35 30 @Override
36 - protected Element getStyleElement()
37 - {
31 + protected Element getStyleElement() {
38 32 throw new IllegalStateException( "No Style Support" );
39 33 }
40 34 }