Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/OldServer/src/org/litesoft/GWT/forms/server/support/converters/SendableSimpleFixedPointLongConverter.java

Diff revisions: vs.
  @@ -3,21 +3,19 @@
3 3
4 4 import org.litesoft.GWT.forms.server.support.nonpublic.*;
5 5 import org.litesoft.core.simpletypes.*;
6 +
6 7 import java.io.*;
7 8
8 - public class SendableSimpleFixedPointLongConverter extends AbstractSendableSameConverter
9 - {
9 + public class SendableSimpleFixedPointLongConverter extends AbstractSendableSameConverter {
10 10 private int mDecimalPlaces;
11 11 private NumericFormatControl mFormatControl;
12 12
13 - public SendableSimpleFixedPointLongConverter( int pDecimalPlaces, NumericFormatControl pFormatControl )
14 - {
13 + public SendableSimpleFixedPointLongConverter( int pDecimalPlaces, NumericFormatControl pFormatControl ) {
15 14 mDecimalPlaces = pDecimalPlaces;
16 15 mFormatControl = pFormatControl;
17 16 }
18 17
19 - protected Serializable convertCommon( Object pValue )
20 - {
18 + protected Serializable convertCommon( Object pValue ) {
21 19 return to_FixedPointLong( mDecimalPlaces, mFormatControl, pValue );
22 20 }
23 21 }