Tagged Questions
The grasp tag has no wiki summary.
2
votes
2answers
681 views
What is the Difference between GOF and GRASP design patterns
I am really confused about the difference between GOF and GRASP patterns?
even both contribute to improved Object oriented practices
2
votes
2answers
169 views
What exactly is GRASP's Controller about?
What is the idea behind Grasp's Controller pattern?
My current interpretation is that sometimes you want to achieve something that needs to use a couple of classes but none of those classes could or ...
2
votes
1answer
301 views
Facade controller, is it efficient?
Using a facade controller pattern in .net. It seems as if though it is not efficient BECAUSE, for every event that happens in a domain object(Sales, Register, Schedule, Car) it has to be subscribed to ...
1
vote
3answers
49 views
The “Dial-able” Power Principle (aka?)
As a designer, I like providing interfaces that cater to a power/simplicity balance. For example, I think the LINQ designers followed that principle because they offered both dot-notation and ...
1
vote
1answer
44 views
What is the most cohesive location to utilize a logger?
I've written a task manager program using Java, and made a single UI implementation for the moment in swing. The program has 3 layers at the moment. A presentation layer that interacts with the domain ...
1
vote
1answer
129 views
Grasp Controller, Does it really need a UI to exist?
I have a Domain model which can be in multiple states, and if these states go out of a given range it the domain should automatically react.
For example I have a Car which is made of multiple things ...
1
vote
2answers
219 views
Does GRASP Creator really decouples?
I'm learning GRASP pattern at school and I have a question about the Creator pattern.
Let's say you have three class, Computer, UserRespository and User.
One of the rules of the GRASP Creator ...
0
votes
1answer
88 views
Grasp creator vs. dependency Injection
Is GRASP Creator a complete contradiction to Dependency Injection?
If it is not, please explain why.
0
votes
2answers
247 views
edge co-ordinates after edge detection
I have been working with OpenCV for a fairly short time, and have performed Canny Edge Detection on an image, and also performed dilation after that to further separate the object (in my case a ...
0
votes
1answer
327 views
Service layer = Application layer = GRASP Controller layer
I think service/application layer is the same thing as Larman describes as GRASP Controller, being the first object beyond the GUI layer that delegates to the domain layer, and should be reusable from ...
0
votes
0answers
109 views
GRASP Pattern: Correct controller pattern?
I have a specific questions about whats wrong and right to do, when applying the controller pattern to my application. Its a C# WinForms client application.
As you can see on the two attached images, ...
-2
votes
1answer
147 views
C++ promotes a separation between class definitions and class implementations but not JAVA [closed]
I have a homework and I need to evaluate which approach is better according to GRASP.
I found this link that answers part of my questioning: In C++ why have header files and cpp files?
However, what ...