Changeset 1086
- Timestamp:
- 07/17/08 06:36:17 (4 years ago)
- Location:
- trunk/src
- Files:
-
- 2 modified
-
java/org/jcoderz/commons/util/UserTypeBase.java (modified) (1 diff)
-
xml/xsl/libcommon.xsl (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/java/org/jcoderz/commons/util/UserTypeBase.java
r1011 r1086 49 49 * @author thomas.bodemer 50 50 */ 51 public abstract class UserTypeBase implements UserType 51 public abstract class UserTypeBase implements UserType, Serializable 52 52 { 53 53 -
trunk/src/xml/xsl/libcommon.xsl
r1078 r1086 1038 1038 extends org.jcoderz.commons.util.StringUserTypeBase 1039 1039 { 1040 /** The serialVersionUID used for serialization. */ 1041 static final long serialVersionUID = 1; 1042 1040 1043 /** <xsl:choose> 1041 1044 <xsl:when … … 1330 1333 extends org.jcoderz.commons.util.IntUserTypeBase 1331 1334 { 1335 /** The serialVersionUID used for serialization. */ 1336 static final long serialVersionUID = 1; 1337 1332 1338 /** 1333 1339 * Creates a <xsl:value-of select="$type-classname"/> from its numeric … … 1387 1393 extends org.jcoderz.commons.util.LongUserTypeBase 1388 1394 { 1395 /** The serialVersionUID used for serialization. */ 1396 static final long serialVersionUID = 1; 1397 1389 1398 /** 1390 1399 * Creates a <xsl:value-of select="$type-classname"/> from its numeric … … 1994 2003 extends org.jcoderz.commons.util.BigDecimalUserTypeBase 1995 2004 { 2005 /** The serialVersionUID used for serialization. */ 2006 static final long serialVersionUID = 1; 2007 1996 2008 /** 1997 2009 * Creates a <xsl:value-of select="$type-classname"/> from its numeric
