I want a static inner class that can't be instantiated even by the external class. Right now I just have a documentation that says "Please don't instantiate this object". Can I give a better signal?
|
I assume that "external class" really means the enclosing class.
However, I would suggest that this (i.e. preventing all instantiation of an inner class) is a pointless exercise. Any non-static declarations in the inner class could not be used in any way, and any static declarations may as well be declared in the enclosing class. Besides, anything that you do to "prevent" the enclosing class from instantiating the inner class can be circumvented by editing the source file containing the two classes. And even a class with a |
||||