First of all, I'm a newbie to XDoclet so if I should be posting this
elsewhere please let me know.
Based on the documentation, the tag <XDtEjbPersistent:persistentfieldList/>
should return a field list _without_ types. The current implementation
includes types. Should the documentation be changed or the code?
---------------------------------------------------------------------------
public class PersistentTagsHandler extends CmpTagsHandler
----------------------------------------------------------------------------
/**
* Returns a string containing comma-separated list of persistent
fields
* without their types.
*
* @return A string containing comma-separated
list of
* persistent fields without their types.
* @exception XDocletException Description of Exception
* @see
#fieldList(com.sun.javadoc.ClassDoc,java.lang.String,java.lang.String,boolea
n)
* @doc:tag type="content"
*/
public String persistentfieldList() throws XDocletException
{
return fieldList( getCurrentClass(), null, null, false );
}
---------------------------------------------------------------------------
public static String fieldList( ClassDoc clazz, String inclTag,
String exclTag, boolean name_value_out ) throws XDocletException
..... omitted code....
if( foundFields.size() > 1 )
st.append( "," );
st.append( type ).append( ' ' ).append( name );
// 1.18.2001 tck - should this be ?
// st.append( name );
Tim Kuntz
The Pampered Chef
630.916.1182
[EMAIL PROTECTED]
_______________________________________________
Xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user