Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
251 views

Any way to reconcile Feature Envy with Long Parameter List?

I have been thinking about the Feature Envy smell lately. Suppose I have an object called DomainObject, that responds to a message "exportTo:someExport". This is basically the DomainObject's way to ...
2
votes
6answers
147 views

How do you fight growing parameter list in class hierarchy?

I have a strong feeling that I do not know what pattern or particular language technique use in this situation. So, the question itself is how to manage the growing parameter list in class hierarchy ...
0
votes
2answers
81 views

Python function long parameter list

I'm looking for the best way to give a list of arguments to my function : def myFunc(*args): retVal=[] for arg in args: retVal.append(arg+1) return "test",retVal The problem is ...
0
votes
1answer
88 views

Long parameter list where a group of parameters can be grouped to an existing class, but these parameters are not gleaned from an object

The below code is the Long Parameter List Smell method. // Long Parameter List Smell public void paint (Graphics gr, double x, double y, double width, double height, ...
0
votes
2answers
177 views

Construtor with long parameter list OR multiple setters?

To initialize an instance, we can use either a default constuctor and a number of setters, or a constructor with a long parameter list. In the latter way the object state may remain unchanged after ...