public String getControlName(Component component) { String str = ""; if (component instanceof JComponent) { JComponent c = (JComponent) component; String subAppName = (String) c.getClientProperty("XPStyle.subAppName"); if (subAppName != null) { str = subAppName + "::"; } } return str + control.toString(); }
public String toString() { return control.toString() + "." + name(); }