All Questions
3 questions
1
vote
1
answer
485
views
Service/component based application in Java
I have a Java project whose architecture is quite component-oriented, and I am wondering
if this is a common way to organize code
which rules/patterns are used,
if there is a name for this coding ...
34
votes
8
answers
15k
views
Is throwing an exception an anti-pattern here?
I just had a discussion over a design choice after a code review. I wonder what your opinions are.
There's this Preferences class, which is a bucket for key-value pairs. Null values are legal (that'...
84
votes
8
answers
73k
views
Is modifying an incoming parameter an antipattern? [closed]
I am programming in Java, and I always make converters sort of like this:
public OtherObject MyObject2OtherObject(MyObject mo){
... Do the conversion
return otherObject;
}
At the new ...