Slide 19
Slide 19 text
STUPID
Tight Coupling
Tight coupling, also known as strong coupling, is the degree
to which each program module relies on each one of the
other modules.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
ButterKnife.bind(this);
{/* … */ }
dribbblePrefs = DribbblePrefs.get(this);
designerNewsPrefs = DesignerNewsPrefs.get(this);
filtersAdapter =
new FilterAdapter(this,SourceManager.getSources(this),
new FilterAdapter.FilterAuthoriser()
{/* … */ }