Is there a published list of property names for Swing components?
From looking at the source code for javax.swing.table.TableColumn, I can find calls to firePropertyChange with property names like "modelIndex", "identifier", "headerValue", etc. as hardcoded Strings, not as String constants. As far as I can tell, the only way to know what properties this class can "fire" is to look at the source code. Writing an event listener on this basis is very troubling, for obvious reasons.
If there is no published list, is there a better way to get the property names?
Thanks.