Tagged Questions
The mediator tag has no wiki summary.
8
votes
7answers
12k views
WPF MVVM dialog example
Does anyone have any examples of showing a window dialog using MVVM (Prism)? - for example a configuration settings window when a command is executed.
All of the examples I've seen use the mediator ...
8
votes
4answers
3k views
facade vs mediator
I’ve been researching the difference between these two patterns.
I understand that facade encapsulates access to a sub system, and mediator encapsulates the interactions between components.
I ...
6
votes
1answer
336 views
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 ...
3
votes
2answers
173 views
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.
It's because my code ...
3
votes
4answers
407 views
Mediator pattern or too much responsibility
In my application, I have several components that have to know about each other, such as a menu bar and a tool bar that both need to know about the table to add or remove jobs and also to find out ...
2
votes
1answer
210 views
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 ...
2
votes
1answer
89 views
Does the Flex4 Host Component have the same function as a view mediator/helper?
Coming from Robotlegs/PureMVC, I am pretty familiar with the concept of the view mediator, i.e. a component that pretty much listens to events/requests coming from the "dummy" view and makes a further ...
2
votes
2answers
136 views
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.
In ...
2
votes
2answers
683 views
MVVM: Communication between the Model and ViewModels
I'm developing a WPF application using the MVVM pattern. I'm using MVVM Light library and I'm also trying to use a dependency injector (I'm considering Ninject and Unity).
I've read a lot of blog ...
2
votes
3answers
600 views
Does Mediator Pattern work in this situation?
So for my current project, there are basically three main Java classes:
GUI
Instant Messaging
Computation
Essentially, there needs to be full communication, so we've decided to use the mediator ...
2
votes
3answers
696 views
When would you use the mediator design pattern
As the title states when would you recommend the use of the mediator design pattern and where do you see it used incorrectly?
1
vote
1answer
57 views
WSO2 - Using get-property() function in Property/Xquery Mediators
Our current service has 7 operations. when writing an outbound xquery "local entry" in wso2, we're trying to retrieve the name of the current operation being executed (how can this be so difficult?).
...
1
vote
3answers
155 views
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...
OK - I have 3 or 4 distinct views, each governed by it's own mediator.
Each ...
1
vote
1answer
102 views
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 how to do this on startup, since there does not ...
1
vote
1answer
184 views
Mediator pattern between ViewModels and Views in different libraries
I'm italian, so sorry for bad language.
I'm working on a MVVM based application. My solution includes in an single WPF application project Ms, Vs and VMs.
As mediator between Views and ViewModels I ...
1
vote
1answer
273 views
MVVM: Design a ViewModel architecture with aggregated/depending ViewModels
The WPF/MVVM alpha geeks say:
1 View has 1 ViewModel. Sometimes Multiple Views has 1 ViewModel (using a Wizard).
If you regard my image you see 6 colored Views/UserControls.
The YELLOW,GREEN and ...
1
vote
2answers
153 views
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 application get the datatime data too because they registered ...
1
vote
1answer
612 views
Communication between 6 ViewModels and a Messenger == AntiPattern?
A common approach for communication between 2 ViewModels is this: http://stackoverflow.com/questions/2474768/mvvm-view-model-view-model-communications
The Mediator pattern or a Messenger class. But ...
1
vote
1answer
103 views
Mediator Pattern for trivial messages?
Is it a good programming practice to use the mediator pattern for trivial messages (show an image viewer window etc.) ?
Mediator.NotifyColleagues(Messages.DISPLAY_IMAGE, image);
instead of just ...
1
vote
2answers
406 views
Flex PureMVC: Mediator not registering
A component is created at runtime and a mediator is created and registered. All is well.
In a separate view, another instance of that component is created. The mediator is created but onRegister() ...
1
vote
3answers
276 views
Unit Testing with the Mediator Pattern - All Private to Public
I am using the mediator pattern to facilitate unit testing of GUI objects.
psudo code Example:
Class MyGuiClass
{
//... Declare and initialize mediator to be a MyMediator
private void ...
1
vote
1answer
153 views
The Mediator Design Pattern in OCaml
I am trying to accomplish a mutual binding between two classes in OCaml (a la Mediator Pattern's) and am getting an error upon compilation.
class virtual ['mediator] colleague mIn = object
val m = ...
0
votes
1answer
17 views
Mediator file in silverlight mvvm applications
In silverlight-MVVM applications, we have to use some kind of mediator/even aggregator file..to commuunicate between different viewmodels.
But I can see that these files maintains list(or dictionary) ...
0
votes
1answer
59 views
Using a Mediator in WPF MVVM
I have a project implementing a Mediator pattern similar to what is found in this question:
Sql, Wpf, Xaml, C#, Binding data, Dynamic resource, accessing to non-static data, Obtaining a Reference to ...
0
votes
1answer
51 views
How to separate a view from a controller?
one of my co-workers reviewed my code in javascript and told me that I should not use a view in a controller. Instead, I should use a mediator. I'm totally lost. He will not be available until next ...
0
votes
1answer
37 views
List-based publish subscribe pattern in c# (Wordpress hooks / filters)
I come from a PHP background and have used Wordpress quite a lot, I love how their plugin architecture works and the ability to hook events to event names. One of the best parts I like about it is ...
0
votes
0answers
45 views
Command or Mediator pattern for MDI child form communication
I'm currently refactoring an MDI application and trying to determine which design pattern might be the best approach for what I'm trying to accomplich. In my MDI application I have a menu, tool and ...
0
votes
1answer
98 views
Modules + Fascade + Mediator combination in JavaScript
I've finished reading a great article on http://addyosmani.com/largescalejavascript/
This article explains how to combine modules, a facade, and a mediator together for a JavaScript application.
I ...
0
votes
1answer
91 views
Best practice for C# mediator GUI pattern (Winforms)
I am developing an application and I would like to have my client class as clean as possible.
I was thinking of using the mediator pattern (can be found on the following address)
...
0
votes
3answers
549 views
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 ...
0
votes
2answers
95 views
Cross fire with Messenger system between ViewModels causes Problems
I have a DateNavigatorViewModel + DateNavigatorView on my ButtonBar.
Below are 2 Views which get exchanged:
DailyView and WeeklyView. Each View has a DailyViewModel and WeeklyViewModel.
In my ...
0
votes
1answer
40 views
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 ...
0
votes
1answer
292 views
Mediator pattern- import wizard c#
i need to build a very simple wizard that will import a text file into a application in three steps and i need to use a mediator pattern. Im just wondering if there are some example applications or ...
0
votes
2answers
711 views
MVVM Mediator multiple instances
Can someone explain how the mediator pattern works with multiple instances.
My code in the view:
public MyView() {
Mediator.Register("CloseWindow",()=>Close());
}
and in the ViewModel:
...
0
votes
1answer
130 views
pureMVC: unique mediator for each tab in an interface
I am building a tabbed interface for switching between various similar layers. Each layer will have a number of graphs. By dragging with the mouse the graphs can be rearranged or even moved between ...