Hi Jeff,

Anything in the Eclipse bug list for a possible cause in the particular API you're using?

Maarten

On 14 juli 2006 23:39:59 GMT+02:00 Jeff Butler wtote:

Well, that certainly is a mystery. I'm using Eclipse APIs to do all the heavy lifting here, so no regular expressions. I can't see how this could be happening unless it's happening inside eclipse somehow.

I think the best I can offer is that a new version will be coming out soon, and I've rewritten the Java merger to use newer APIs in Eclipse. Hopefully that will fix it.

Jeff Butler


On 7/12/06, Maarten Meijer <[EMAIL PROTECTED]> wrote:
Hi Jeff,


The duplicate methods are in ALL files, my table should map to a Cart family, so it generates Cart.java, CartDAO.java, CartDAOImpl.java, CartExample.java, and CartKey.java


When regenerating abator strips the comment, but not the field and methods, so the result looks like this for CartKey.java:


public class CartKey {


private Integer cartID;


public Integer getCartID() {
return cartID;
}


public void setCartID(Integer cartID) {
this.cartID = cartID;
}


/**
* This field was generated by Abator for iBATIS. This field corresponds to the database column lighting.lcart.c_cartID
* @abatorgenerated  Tue Apr 11 15:43:19 CEST 2006
*/
private Integer cartID;


/**
* This method was generated by Abator for iBATIS. This method returns the value of the database column lighting.lcart.c_cartID
* @return  the value of lighting.lcart.c_cartID
* @abatorgenerated  Tue Apr 11 15:43:19 CEST 2006
*/
public Integer getCartID() {
return cartID;
}


/**
* This method was generated by Abator for iBATIS. This method sets the value of the database column lighting.lcart.c_cartID
* @param cartID  the value for lighting.lcart.c_cartID
* @abatorgenerated  Tue Apr 11 15:43:19 CEST 2006
*/
public void setCartID(Integer cartID) {
this.cartID = cartID;
}
}

Also note that a second regeneration adds another group of uncommented(?) field and set/get methods. The comment with @abatorgenerated rertain the dat from the original generation. So the problem is twofold: 1) the stuff previously generated is not recognized and deleted (some error in regular expression maybe)
2) the newly generated stuff doesn't include comments


The files char-set is MacRoman (as is default on Eclipse Mac) and the line endings are UNIX (also default)


If I can be of further assistance, please let me know!


Maarten




I've tested on Eclipse 3.2 (Windows) and I'm not seeing this behavior - a regeneration works fine for me. So, here are some questions:

1. Are the duplicated methods in the DAOs, the model objects, or both?

2. Did the JavaDoc comments get stripped off the methods somehow before calling Abator? Abator only knows what to delete by the @abatorgenerated JavaDoc element.


I'm using Ababator 0.6.5 on Mac OSX with Eclipse 3.2. I've disabled
Oxygen to get back the 'Generate iBatis Artifacts' menu item again.
I have decided to use the DAO as wll after all, so I added to the
abatorConfig.xml:
       <daoGenerator type="IBATIS" targetPackage="com.fold1.beans"
targetProject="fold1wt">
               <property name="enableSubPackages" value="false"/>
       </daoGenerator>


I then do a 'Generate...' and OPPS, hundreds of errors, mostly
duplicate methods/fields.
Reason: the old generated code is not removed, just stripped of the
comments!
How can I get abator to generate correct code?


Maarten




Reply via email to