Tagged Questions

0
votes
3answers
58 views

Derived Interface with derived interface member

Hi I have 2 base interfaces, IViewBase (which all views will implement) and IPresenterBase (which all presenters will implement): public interface IViewBase { } public interface IPresenterBase { …
0
votes
2answers
246 views

Can the Presenter of Web Client Software Factory(WCSF) and Smart Client Software Factory(SCSF) shared and how?

Web Client Software Factory(WCSF) and Smart Client Software Factory(SCSF) both use MVP pattern. M-Model can be shared. V-View has to be different as both are on different platform(Desktop/Web). I …
0
votes
0answers
66 views

Pausing/Resuming an Adobe Breeze/Presenter SWF via JavaScript

I am looking for a way to control the playback of some content created via Breeze using JavaScript. Essentially I have the Breeze SWF embedded on a page, and that page is surfaced in another …
0
votes
1answer
114 views

What are some patterns for creating views and controllers in an MVC or MVP app?

I'm working on a MVC/MVP GUI for editing a document. The document has a tree structure, with some nodes representing text, others images. The app model also includes a command stack, with commands …