Thanks for the in depth response. OK, not a Clojure problem . But as
an aside, it is unfortunate that the Java reflection API cannot handle
this case. The redeclaration solution may work fine, but it defeats
the purpose of having the package private interface (which may have
other public sub-type
On Sat, Nov 29, 2008 at 6:17 PM, JMan <[EMAIL PROTECTED]> wrote:
>
> Consider these 2 interfaces:
>
> - PackagePrivateInterface.java
>
> package test;
>
> interface PackagePrivateInterface {
>public void myPublicMethod();
> }
>
> - PublicTagInterface.java
>
> package test;
>
> public interface