Message774

Author ype
Recipients
Date 2004-05-03.21:30:07
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=125722

More general, from Samuele's recent post: 
 
the most clean workaround in 2.1 is to use unbound methods 
out of the  
relevant public interface/class: e.g. 
 
given 
 
public interface I { 
 
   void meth(); 
 
} 
 
and some object obj implenting I but whose concrete class is 
package private: 
 
import I 
 
obj = ... 
 
I.meth(obj) 
 
works.  
 
See also Samuele's comment from Nov 2002. 
History
Date User Action Args
2008-02-20 17:17:11adminlinkissue628315 messages
2008-02-20 17:17:11admincreate