All Questions
3 questions
3
votes
1
answer
540
views
Contract interface/class with inner classes/interfaces
Brief description of my project structure.
I have some base classes like BaseView, BasePresenter ... .
Also my project consists of modules, module represents one complete part of the application.
...
1
vote
3
answers
2k
views
When is a event listener invoked during program execution?
I am using the Obervable-Observer Pattern.
MyClass extends Observable{
invokeListeners(){
doSomething;
setChanged();
notifyListeners();//This invokes onUpdate() in "implements ...
8
votes
5
answers
3k
views
Everything has an Interface [duplicate]
Possible Duplicate:
Do I need to use an interface when only one class will ever implement it?
I am taking over a project where every single real class is implementing an Interface. The vast ...