good idea but :

you can't define private methods in an interface, so I tried with public 
methods, but these are unsurprisingly ignore by the serialisation runtime.

I tried extending an abstract class with these methods - but you are not 
allowed to define something as private and abstract - which makes sense.

I tried extending a concrete class with empty bodies for these methods - but 
got a java.lang.IncompatibleClassChangeError when trying to compile
my subclass which overrides these methods. This makes sense as well, I 
think, since the method is private a subclass should not be able to see it
and therefore also be unable to replace its implementation.

thanks for trying :-) - have I missed anything ?


Jules


-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to