Author: chatellier Date: 2010-11-03 09:09:42 +0000 (Wed, 03 Nov 2010) New Revision: 149 Log: Add command comment field Modified: trunk/coser-business/src/main/java/fr/ifremer/coser/command/Command.java Modified: trunk/coser-business/src/main/java/fr/ifremer/coser/command/Command.java =================================================================== --- trunk/coser-business/src/main/java/fr/ifremer/coser/command/Command.java 2010-11-03 09:07:03 UTC (rev 148) +++ trunk/coser-business/src/main/java/fr/ifremer/coser/command/Command.java 2010-11-03 09:09:42 UTC (rev 149) @@ -49,6 +49,11 @@ protected String commandUUID; /** + * Command comment. + */ + protected String comment; + + /** * UUID de la commande. Les commandes ayant un UUID commun font partie * du même groupe de commandes. * @@ -71,6 +76,24 @@ } /** + * Command comment. + * + * @return command comment + */ + public String getComment() { + return comment; + } + + /** + * Command comment. + * + * @param comment command comment + */ + public void setComment(String comment) { + this.comment = comment; + } + + /** * Do command on project. * * @param project project
participants (1)
-
chatellier@users.labs.libre-entreprise.org