Hi all,
By convention, where should we place the JavaDoc comments of the
package. I remember reading it somewhere before, but can't remember
exactly. If i recall correctly, we should create a new compilation unit
(*something*.java) which contains nothing (no class or interface)
except for the JavaDoc comments for the package.
But what's this *something.java*?
TIA and Regards,
Edwin
Daniel Dyer - 14 Nov 2005 13:22 GMT
> Hi all,
>
[quoted text clipped - 5 lines]
>
> But what's this *something.java*?
package-info.java
Like this:
/**
* This is my package.
*/
package com.mydomain.mypackage;
Dan.

Signature
Daniel Dyer
http://www.dandyer.co.uk
E11 - 14 Nov 2005 13:24 GMT
> package-info.java
>
[quoted text clipped - 4 lines]
> */
> package com.mydomain.mypackage;
Thanks! :-) And BTW, i thing HSQL is what i need too :)
Regards,
Edwin