mediator
PureMVC Mediators and views - creation and control
I\'m making an app with flash AS3 and puremvc, the way to correctly handle view mediators is sort of throwing me a little...[详细]
2023-03-28 07:56 分类:问答Mediator Pattern in JavaScript Questions
I\'m creating a sort of library based on the mediator for my work. We create lots of applications so I wanted something that can easily be taken and modified on a per app basis. I also want it to be e[详细]
2023-03-25 03:46 分类:问答Netbeans Platform Project using Mediator Pattern - Is it possible?
I want to use the mediator design pattern (http://en.wikipedia.org/wiki/Mediator_pattern) in my netbeans platform modular app. However, I am not sure 开发者_JAVA百科how to do this on startup, since th[详细]
2023-03-20 13:14 分类:问答Mediator pattern and creation
I have several \"widgets\" involved in a presentation that need to interact with each other, but the interactions have gotten complex enough to warrant a new object to handle the interactions.[详细]
2023-03-14 10:56 分类:问答Mediator C++ GUI sample
I have heard that somewhere @ web I\'ll be able to find good C++ example of Mediator working with GUI components. But I menaged to find only that GoF sample or things from sorcemaking and similar that[详细]
2023-02-20 19:28 分类:问答How can one overcome a concurrent modification exception in a GUI mediator?
FYI I have adopted the mediator pattern for my GUI in Swing on Java. Unfortunately, a concurrent modification exception is always thrown if user input requires a new window.[详细]
2023-02-08 11:09 分类:问答Better way than mediator pattern for decoupling widgets in this situation?
I’m trying to figure out which pattern to follow in a certain situation. I have web app that consists of several main widgets that interact with each other somehow. The widgets follow the module patt[详细]
2023-01-26 16:53 分类:问答MVVM: Using a Messenger only with custom objects to make Send<> "id" unique?
what I do not like about the Messenger I use (mvvm light toolkit) that when I register to DateTime and I send something other parts of my applica开发者_开发问答tion get the datatime data too because t[详细]
2023-01-23 01:48 分类:问答Communication between 6 ViewModels and a Messenger == AntiPattern?
A common approach for communication between 2 ViewModels is this: MVVM- View Model-View Model Communications[详细]
2023-01-20 08:32 分类:问答Send an IOrder from ViewModel1 to ViewModel2 with a Messenger, how do you differentiate ADD/DEL?
I have a CustomerListViewModel and a OrderListViewModel. In the latter I select an order to delete it or I create a new one. In both situations my CustomerListViewModel and the Messenger must register[详细]
2023-01-20 02:11 分类:问答