|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
The Observer
Interface is responsible for holding implizit all
the views which belong to the controller of the MVC Pattern.
It defines the two overloaded update methods which have to be implemented by
the views. Like that the model component of the MVC pattern must not know
explicit all the classes on which it has to perform a update after a change
of the model.
The diverse views are in a list as Observers
.
View
,
ch.elca.dependency.model.FilteredModel
Method Summary | |
void |
clearSelection()
Clears all the selections in all the views. |
void |
select(java.util.ArrayList selectList)
Selects all the packages in the specified list for all the views implementing the Observer interface. |
void |
update(DependencyModel dependencyModel)
Updates this Observer. |
Method Detail |
public void update(DependencyModel dependencyModel)
dependencyModel
- a DependencyModel
valuepublic void select(java.util.ArrayList selectList)
Observer
interface.
selectList
- List containing all the selected packages.public void clearSelection()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |