Hi Aslak, hi Middlegen users, I submitted a patch on SF: [ 575403 ] Ant for Local and Remove views patch
I did the modification like you advised. The only thing that didn't work as described was to put the setter/and getter in CMP20Plugin.java (it worked on my old version at home, but didn't using my latest CVS snapshot from friday 28.06.). It produced ClassCastExcpetions when doing > String viewtype = ((CMP20Plugin)getPlugin()).getViewtype(); in Entity20Column.java. For some reason it was getting BMP20Plugin instead of CMP20Plugin from tge getPlugin() method. So I moved the code into Entity20Plugin.java and use the following cast now: String viewtype = ((Entity20Plugin)getPlugin()).getViewtype(); Hope that's OK, but it works. Couldn't test the preferences support because I am using JDK 1.3.1, but it should also work. Leander ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek No, I will not fix your computer. http://thinkgeek.com/sf _______________________________________________ middlegen-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/middlegen-user
