> Is there another way of customising the PK file?
> (I need to add String based mutators....)

Another option is to declare the PK's superclass, and put the mutators in
the superclass:

public abstract class AbstractMyPK
{
  public abstract void setId(int id);

  public void setId(String id)
  {
    setId(Integer.valueOf(id).intValue());
  }
}

its a workaround, but if you're not using a superclass atm, it should work.

cheers
dim


_______________________________________________
Xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to