Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 for /trunk/Java/GWT/OldServer/src/org/litesoft/GWT/forms/server/support/nonpublic/AbstractSendableSameConverter.java

Diff revisions: vs.
  @@ -1,16 +1,16 @@
1 - // This Source Code is in the Public Domain per: http://unlicense.org
2 - package org.litesoft.GWT.forms.server.support.nonpublic;
3 -
4 - import java.io.*;
5 -
6 - public abstract class AbstractSendableSameConverter extends AbstractSendableDataConverter {
7 - protected Serializable convertNotNullToPassable( Object pValue ) {
8 - return convertCommon( pValue );
9 - }
10 -
11 - protected Object convertNotNullNotBoxedTypeFromPassable( Serializable pValue ) {
12 - return convertCommon( pValue );
13 - }
14 -
15 - abstract protected Serializable convertCommon( Object pValue );
16 - }
1 + // This Source Code is in the Public Domain per: http://unlicense.org
2 + package org.litesoft.GWT.forms.server.support.nonpublic;
3 +
4 + import java.io.*;
5 +
6 + public abstract class AbstractSendableSameConverter extends AbstractSendableDataConverter {
7 + protected Serializable convertNotNullToPassable( Object pValue ) {
8 + return convertCommon( pValue );
9 + }
10 +
11 + protected Object convertNotNullNotBoxedTypeFromPassable( Serializable pValue ) {
12 + return convertCommon( pValue );
13 + }
14 +
15 + abstract protected Serializable convertCommon( Object pValue );
16 + }