Community
Participate
Working Groups
The recently added CTabFolder extended properties all return null for retrieveCSSProperty(). They must return the state of the property. I believe this is required for certain cases where a snapshot of the existing widget state is required (e.g. to restore it to the state prior to styling).
Created attachment 126462 [details] retrieveCSSProperty() does not only return null
(In reply to comment #1) > Created an attachment (id=126462) [details] > retrieveCSSProperty() does not only return null Please also attach junit tests.
Created attachment 126485 [details] retrieveCSSProperty() does not only return null & junit test
Instead of: if (folder.getBorderVisible()) return "true"; else return "false"; You could do: return Boolean.toString(folder.getBorderVisible()); which is a little more compact, less prone to typo or copy/paste error, and more importantly will return the correct String representation for true/false.
Released to HEAD