nope. like this one: + /** + * Set the person's date of birth, specified as a [EMAIL PROTECTED] Date} object. + * Container support for this field is OPTIONAL. + * + * @param dateOfBirth + * the person's data of birth + */ void setDateOfBirth(Date dateOfBirth);
should be + /** + * Set the person's date of birth, specified as a [EMAIL PROTECTED] Date} object. + * Container support for this field is OPTIONAL. + * + * @param dateOfBirth <removed the newline from here> the person's data of birth + */ void setDateOfBirth(Date dateOfBirth); On Wed, Jul 23, 2008 at 1:09 PM, Ian Boston <[EMAIL PROTECTED]> wrote: > new lines, > do you mean like the ^^^^ one here. > > If so let me fix tomorrow (I made the mess, so I should clean it up) > > Ian > > On 23 Jul 2008, at 20:50, Cassie wrote: > > + /** >>> + * Get the person's date of birth, specified as a [EMAIL PROTECTED] >>> Date} object. >>> + * Container support for this field is OPTIONAL. >>> + * >>> >> > ^^^^^^^^^^^^^ > >> + * @return the person's data of birth >>> + */ >>> >> >

