Sometimes I am inspecting or exploring my dowmain objects which contains many instance variables. I want to exclude all of them excepting the current specific ones of the instance I am exploring.
Say I am inspecting MyObject with instance variables: text, size, status.
- dependents
- owner
- window
- announcer
- ...(lots of i.v.)
- text
- size
- status
I want to view:
- text
- size
- status
I have seen you can define the method inspectorClass, but is EyeInspector or EyeExplorer designed to configure this type of view? Should I subclass SelfEyeElement class?