Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/client/foundation/widget/table/datatableadapter/BrowserTableResizeSupportIE.java

Diff revisions: vs.
  @@ -1,20 +1,19 @@
1 1 package com.temp.client.foundation.widget.table.datatableadapter;
2 2
3 -
4 - import com.google.gwt.dom.client.Element;
3 + import com.google.gwt.dom.client.*;
5 4
6 5 public class BrowserTableResizeSupportIE extends BrowserTableResizeSupport {
7 6 public BrowserTableResizeSupportIE() {
8 - super("IE");
7 + super( "IE" );
9 8 }
10 9
11 10 @Override
12 - public int getColumnWidthInPixels(int borderOverhead, Element headerCell) {
11 + public int getColumnWidthInPixels( int borderOverhead, Element headerCell ) {
13 12 return headerCell.getClientWidth() + borderOverhead;
14 13 }
15 14
16 15 @Override
17 - public int adjustColumnWidthInPixelsForBorder(int borderOverhead, int resizedWidth) {
16 + public int adjustColumnWidthInPixelsForBorder( int borderOverhead, int resizedWidth ) {
18 17 return resizedWidth - borderOverhead;
19 18 }
20 19 }