[Japi-cvs] SF.net SVN: japi:[891] libs/lang/trunk/src/prj/net/sf/japi/lang/ PropertyComparator.java
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-02-15 13:28:27
|
Revision: 891 http://japi.svn.sourceforge.net/japi/?rev=891&view=rev Author: christianhujer Date: 2009-02-15 13:28:23 +0000 (Sun, 15 Feb 2009) Log Message: ----------- Fixed several javadoc issues. Modified Paths: -------------- libs/lang/trunk/src/prj/net/sf/japi/lang/PropertyComparator.java Modified: libs/lang/trunk/src/prj/net/sf/japi/lang/PropertyComparator.java =================================================================== --- libs/lang/trunk/src/prj/net/sf/japi/lang/PropertyComparator.java 2009-02-15 13:28:04 UTC (rev 890) +++ libs/lang/trunk/src/prj/net/sf/japi/lang/PropertyComparator.java 2009-02-15 13:28:23 UTC (rev 891) @@ -38,16 +38,24 @@ /** Serial version. */ private static final long serialVersionUID = 1L; - /** The target class. */ + /** The target class. + * @serial include + */ @Nullable private final Class<C> targetClass; - /** The comparator to compare the property value. */ + /** The comparator to compare the property value. + * @serial include + */ @Nullable private final Comparator<T> delegate; - /** The name of the property to get. */ + /** The name of the property to get. + * @serial include + */ @NotNull private final String propertyName; - /** The getter to read the property. */ + /** The getter to read the property. + * @serial include + */ @Nullable private final Method getter; /** Create a PropertyComparator. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |