|
From: Andreas V. <a_...@us...> - 2004-04-15 20:01:37
|
Update of /cvsroot/cobricks/cobricks2/src/org/cobricks/item In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7446/src/org/cobricks/item Modified Files: Item.java Log Message: Index: Item.java =================================================================== RCS file: /cvsroot/cobricks/cobricks2/src/org/cobricks/item/Item.java,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- Item.java 15 Apr 2004 17:33:02 -0000 1.21 +++ Item.java 15 Apr 2004 20:01:27 -0000 1.22 @@ -468,21 +468,21 @@ } /** - * This method returns a String that contains a XML representation of this - * item. - * To do this the method calls getItemAttributeAsXML for each attribute - * of this item. - * If withAnnotations is set, a representation of the annotations of this - * item is added. - * If withAttachments is set, a representation of the - * attachments of this item is added. - * - * @param withAnnotations boolean to indicate if a representation of the - * annotations of this item should be added - * @param withAttachments boolean to indicate if a representation of the - * attachments of this item should be added - * @return String that represents this item - */ + * This method returns a String that contains a XML representation of this + * item. + * To do this the method calls getItemAttributeAsXML(String, boolean, Object) + * for each attribute of this item. + * If withAnnotations is set, a representation of the annotations of this + * item is added. + * If withAttachments is set, a representation of the attachments of this + * item is added. + * + * @param withAnnotations boolean to indicate if a representation of the + * annotations of this item should be added + * @param withAttachments boolean to indicate if a representation of the + * attachments of this item should be added + * @return String that represents this item + */ public String getItemAsXML(boolean withAnnotations, boolean withAttachments) { logger.debug("getItemAsXML"); @@ -527,7 +527,7 @@ } /** - * This method is an auxiliary method for getItemAsXML. + * This method is an auxiliary method for getItemAsXML(boolean, boolean). * It returns a String that contains a XML representation of the item * attribute specified by the parameter <code>attribute</code> or the * parameters <code>attribute</code> and <code>value</code>. |