OOT is a mini series on writing maintainable Object Oriented code without pulling your hair out. Click here for trick #1, trick #2, trick #3.
We usually construct our objects in one place. It could be a constructor, builder, static factory method, abstract factory or any of the other Creational Patterns.
There are times when objects created by a framework need some additional state that we need to set. Once such example, in Android, is the Activity
class. The Activity
is created by the Android framework and we can only add attributes via an Intent
.
For the longest time while starting Activities and adding extras, I used to add a comment on top of the Activity
class mentioning all the extras that were required to start the Activity
properly. Something like:
To me, such comments were good documentation. I had to start this TargetActivity
from various entry-points across many classes and had startActivity(intent)
written everywhere. This violated DRY: Don’t Repeat Yourself.
As the team and codebase grows, a lot of things could happen to this class:
To avoid disappointment at runtime, it’s nice to define a contract within the target class itself. Use a static starter method for this:
Android Studio also has a built-in live template for the starter:
This helped me avoid a lot of confusion maintaining a project with about 150,000 lines of code over the period of 3 years. I hope this helps you too.
I call this the Starter Pattern(?) for the lack of a better name. Please do let me know if there’s a name for this: Twitter.
Check out the next trick here.