On Thu, 2003-02-27 at 20:50, Raible, Matt wrote: > I'm trying to use: > > <XDtMethod:methodType fullQualifiedFormat="false"/> > > in a custom .xdt template to only render the short name (i.e. String vs. > java.lang.String) of a method's return type. No luck - is my syntax wrong?
Judging by the CVS history for the tag handler http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/xdoclet/xdoclet/core/src/xdoclet/tagshandler/MethodTagsHandler.java the code that did this was removed by Ara back in September (revision 1.21 - "everything is full qualified now, importedList removed from xdt files and marked deprecated"), and so wasn't present in either 1.2 beta 1 or beta 2. Then, as it was no longer working anyway, the @doc.tag for the parameter got removed from the handler at the start of this month by Aslak (revision 1.23 - "Non-functional parameter for MethodTagsHandler:methodType (fullQualifiedFormat) (XDT-247)") but that was post beta 2 so it's currently still in the online docs. The removal is tied in with the decision to require fully qualified classnames (so xjavadoc doesn't have to play "guess the package"). Search the list archives for stuff about fully qualified names; it's come up a few times since it was done. Having said that, you could try wrapping the <XDtMethod:methodType/> inside a <XDtClass:classOf> block-type tag. ("Returns the not-full-qualified name of the full-qualified class name specified in the body of this tag.") Andrew. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
