1 <p> This class is an inner class, but does not use its embedded reference
2 to the object which created it. This reference makes the instances
3 of the class larger, and may keep the reference to the creator object
4 alive longer than necessary. If possible, the class should be
5 made into a <em>static</em> inner class. Since anonymous inner
6 classes cannot be marked as static, doing this will require refactoring
7 the inner class so that it is a named inner class.</p>