All Questions
4 questions
6
votes
2
answers
275
views
Opposite access to enums
Consider I have many enums (Java) that looks somewhat like this:
...
1
vote
1
answer
105
views
Passing some redundant parameters to an interface vs creating a new request object every time for the interface
I am writing a proxy class, that will fetch a certain property (say propertyA) by calling an underlying service.
Currently we use Service A to get propertyA, but there is a chance that in the near ...
15
votes
4
answers
385
views
More German overengineering™ - Class mappings and factories
Goals:
So the plan was simple: Provide a factory to instantiate implementations of a certain interface (ModelConverter<T>), depending on what model-class you ...
2
votes
1
answer
677
views
Ogg audio format conversion classes
This is my command interface:
public interface IConverter {
void convert();
}
This is my Receiver class:
...