Message147

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

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.  
 
History
Date User Action Args
2008-02-20 17:16:43adminlinkissue222847 messages
2008-02-20 17:16:43admincreate