Anyone have a clip library for creating javadoc type comments that they would be willing to share ?
thx,
David.
javadoc clip library
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
RE: javadoc clip library
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
Andreas
RE: javadoc clip library
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.
Of course you assume that everyone puts everything they are willing to share in the Add-ons section...
cheers,
David.
RE: javadoc clip library
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.
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.