*
*/
public void run() throws Exception {
ProxyTrustInvocationHandler ptih = createPTIH(
newMainProxy(new Interface1RMCTEImpl()),
newBootProxy(new Interface2RMCPTTEImpl()));
InvocationHandler[] ih = new InvocationHandler [] {
new InvHandler(new Interface1RMCTEImpl()),
createPTIH(newMainProxy(new Interface3RMCTEImpl()),
newBootProxy(new Interface2RMCPTTEImpl())),
createPTIH(newMainProxy(new Interface1RMCTEImpl()),
newBootProxy(new Interface4RMCPTTEImpl())),
createPTIH(newMainProxy(new Interface1RMCTEImpl()),
newBootProxy(new Interface2RMCPTTEImpl())),
ptih };
boolean[] expRes = new boolean[] { false, false, false, true, true };
boolean res;
for (int i = 0; i < ih.length; ++i) {