I was wondering how I could get the values of the indices that refer to a specific var 
in a bidim array. I want to intercept any attempt to set on someStrings (below), find 
out which String you are trying to modify and do something at that point.

public class SomeClass {

    private String[][] someStrings; 
... 
}


   


public Debug implements Interceptor {

     public String getName() {...}

     public Object invoke(Invocation invocation) throws Throwable {
         // find out which String in someStrings is being accessed
     }
}

Thanks,

Frank


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3836302#3836302

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3836302



-------------------------------------------------------
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
_______________________________________________
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to