From: <fd...@us...> - 2010-04-03 17:50:38
|
Revision: 5743 http://jnode.svn.sourceforge.net/jnode/?rev=5743&view=rev Author: fduminy Date: 2010-04-03 17:50:32 +0000 (Sat, 03 Apr 2010) Log Message: ----------- added javadoc Modified Paths: -------------- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Labelizer.java Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Labelizer.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Labelizer.java 2010-03-28 19:30:08 UTC (rev 5742) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Labelizer.java 2010-04-03 17:50:32 UTC (rev 5743) @@ -20,6 +20,17 @@ package org.jnode.apps.jpartition.consoleview.components; +/** + * Interface used to transform an object into a displayable String. + * @author Fabien DUMINY (fd...@jn...) + * + * @param <T> + */ public interface Labelizer<T> { + /** + * Get a displayable String representing the given value. + * @param value The value to transform. + * @return + */ String getLabel(T value); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |