Tagged Questions
The null-object tag has no wiki summary.
11
votes
4answers
120 views
Ruby nil-like object
How can I create an Object in ruby that will be evaluated to false in logical expressions similar to nil?
My intention is to enable nested calls on other Objects where somewhere half way down the ...
8
votes
5answers
480 views
Design pattern for default implementation with empty methods
Is there a specific design pattern that describes the scenario where a non-abstract default implementation is provided that implements all or some of the methods on the interface with empty, NO-OP ...
4
votes
4answers
131 views
Trying to refactor to Null object pattern but the end result seems worse
I'm refactoring a big class that has a lot of checks for null all over the place into using the null object pattern. So far it's been an almost smooth change but I am having a couple of issues with ...
3
votes
4answers
490 views
Fowler Null Object Pattern: Why use inheritance?
Why does Fowler PoEAA p. 498 define the null-object pattern in the following way (sample shortened, language is c# but doesn't matter):
public class Customer
{
public virtual string Name {get; ...
1
vote
3answers
2k views
Null object design pattern question
I recently watched this youtube tutorial on the Null Object design pattern. Even though there were some errors in it: such as the NullCar that doesn't do anything creates an infinite loop, the concept ...
0
votes
0answers
104 views
Android Air App using AdMob “NULL Object” Error?
I am currently developing an app using adobe air flashbuilder and I have incorporated AdMob type html adverts into it. The Adverts do come up nicely however if I run the app in debug mode I get this ...
0
votes
1answer
412 views
Grails Integration test: Failure…Cannot invoke method addToPosts() on null object
:D
I was following a tutorial in a book, and I did follow it thoroughly.
However, come the part where I am supposed to write an integration test, it suddenly failed saying: Cannot invoke method ...
0
votes
2answers
244 views
Null Pointer Exception and Null Objects
I have the following lines of code:
def edit = {
if (session.user.id != params.id){
flash.message = "You can only edit yourself."
redirect(action:list)
...
0
votes
1answer
57 views
Behavior of a controller action on reception of a null dto
When a controller detects that a DTO passed to it is null should it instantiate an instance of the DTO (cf the Null Object Pattern), or should it simply throw an exception there and then?
Thanks
0
votes
4answers
338 views
Checking invalid state when using Null Object pattern
When using Null Object pattern, how would you 'check' if a situation is invalid?
for e.g
when there's no item found in the repository, display message 'not found' to the user.
Do I have to do a ...