Hmm, when i regenerate my java objects based on my db table structures the “MyEclipse Persistence Tools” writes at least two files for each table. TableName.java and TableNameDAO.java. Since some of my tables are in one to many or many to many relationships I get ‘Set’s created for those relationships. I use the objects in these sets in my user interface widgets and they don’t have ‘toString’ methods, so I end up with ugly names. I wish to add ‘toSting’ methods to the “MyEclipse Persistence Tools” generated files but I don’t want the “MyEclipse Persistence Tools” to overwrite the entire file. I would like it if there were some sort of tag I could place in the file that would tell the tool “don’t remove this code” OR “copy this code into the newly generated file. I’m sure there are other reasons to add code to these generated files. I could extend the TableName.java class and add the toString method there but it gets messy when I have to recreate the objects in the ‘sets’.