Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[dsdp-tm-dev] (no subject)

Hi TM gurus!
 
I'm trying to understand how to implement the following tree:
 
[Connection]
   ^---[SubSystem]
         ^---[Target 1]
                ^---[Processes]
                       ^---Process 1
                       ^---Process 2
                ^---[Remote files]
                       ^---File 1
                       ^---File 2  
         ^---[Target 2]
                ^---[Processes]
                       ^---Process 1
                       ^---Process 2
                ^---[Remote files]
                       ^---File 1
                       ^---File 2

I've got the Connection, SubSystem and Target working, but I'd like to reuse the 
AbstractFileService and ProcessService with complementary UI for the remote IRemoteFile and IHostProcess.
I guess that there exist some UI/AbstractResource that operates on an IFileService implementation.
I've implemented the AbstractFileService but I haven't found the way to create the tree above.
Can/should I use an extension point and register something on the Target, should I implement
getChildren() in my TargetResourceAdapter that returns an [Remote files] instance, or what?

Any help is appreciated.

Best regards,
Tobias Södergren


Back to the top