Page 1 of 1

javadoc clip library

Posted: Tue Nov 28, 2000 10:56 am
by David Vanden Heuvel
Anyone have a clip library for creating javadoc type comments that they would be willing to share ?

thx,
David.

RE: javadoc clip library

Posted: Wed Nov 29, 2000 4:45 am
by Andreas
I guess if someone had written one and was willing to share it, you could find it under Add-Ons/Clip Libraries. As there is no javadoc library there I guess you are out of luck.

Andreas

RE: javadoc clip library

Posted: Wed Nov 29, 2000 9:16 am
by David Vanden Heuvel
Thanks for pointing out the obvious.

Of course you assume that everyone puts everything they are willing to share in the Add-ons section...

cheers,
David.

RE: javadoc clip library

Posted: Fri Dec 08, 2000 6:23 am
by James Garacci
I just sent my javadoc clips to support, hopefully they will be in add-ons shortly.

Contains things like:

/**
* DESCRIPTION.
*
* <P><CENTER><IMG SRC=docs\CLASS-METHOD.gif></CENTER></P>
*
* @param NAME the DESCRIPTION.
*
* @return the DESCRIPTION
*
* @throws EXCEPTION if REASON.
*
* @since 1.0
*/
public void METHOD( TYPE NAME ) {

}

or the ever popular...

/**
* DESCRIPTION.
*
* <P><CENTER><IMG SRC=docs\CLASS.gif></CENTER></P>
*
* @author DEVELOPER
* @since 1.0 (DATE)
*/
public interface TYPE {
///////////////////////////////////////////////////////////////////////////////
// CONSTANTS

///////////////////////////////////////////////////////////////////////////////
// METHODS

///////////////////////////////////////////////////////////////////////////////
// ACCESSORS

///////////////////////////////////////////////////////////////////////////////
// MUTATORS

}

Hope it is helpful.