Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [dsdp-tm-dev] How do I get an IRemoteProcessSubSystem?

Hi Lothar,

it would help if you said what you already have :-)

What about this:

ISubSystem[] ss = myHost.getSubSystems();
for(int i=0; i<ss.length; i++) {
  if (ss[i] instanceof IRemoteProcessesSubSystem) {
    System.out.println("Make Lothar happy: "+ss[i]);
  }
}

Cheers,
--
Martin Oberhuber, Senior Member of Technical Staff, Wind River
Target Management Project Lead, DSDP PMC Member
http://www.eclipse.org/dsdp/tm
 
 

> -----Original Message-----
> From: dsdp-tm-dev-bounces@xxxxxxxxxxx 
> [mailto:dsdp-tm-dev-bounces@xxxxxxxxxxx] On Behalf Of Lothar Werzinger
> Sent: Dienstag, 10. Februar 2009 23:33
> To: dsdp-tm-dev@xxxxxxxxxxx
> Subject: [dsdp-tm-dev] How do I get an IRemoteProcessSubSystem?
> 
> How do I get an IRemoteProcessSubSystem?
> 
> I googled and looked at the API documantation, but it eludes 
> me how I do get 
> acess to an IRemoteProcessSubSystem.
> 
> Any help appreciated!
> 
> Lothar
> -- 
> Lothar Werzinger Dipl.-Ing. Univ.
> Director of Technology
> Tradescape Inc. - Enabling Efficient Digital Marketplaces
> 1754 Technology Drive, Suite 128
> San Jose, CA 95110
> web: http://www.tradescape.biz
> _______________________________________________
> dsdp-tm-dev mailing list
> dsdp-tm-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/dsdp-tm-dev
> 


Back to the top