-
Bug
-
Resolution: Not an Issue
-
P4
-
7
-
generic
-
generic
There are two methods in javax.swing.plaf.basic.BasicTreeUI
protected void drawDashedHorizontalLine(Graphics g, int y, int x1, int x2)
protected void drawDashedVerticalLine(Graphics g, int x, int y1, int y2)
They both have no spec.
They are supposed to be invoked when branches of the tree are painted and lines have to be painted dashed.
Looking into RI - they are invoked when
/** UI property for painting dashed lines */
private boolean lineTypeDashed;
is set to true.
This property is private so I cannot access and change it.
And it is initialized as:
lineTypeDashed = UIManager.getBoolean("Tree.lineTypeDashed");
While "Tree.lineTypeDashed" is not part of the spec
So for applications and the tests the only way to make sure that the methods are invoked is to set "Tree.lineTypeDashed" to 'true' somehow which is not good as it's not an official property and its name might get changed or removed.
protected void drawDashedHorizontalLine(Graphics g, int y, int x1, int x2)
protected void drawDashedVerticalLine(Graphics g, int x, int y1, int y2)
They both have no spec.
They are supposed to be invoked when branches of the tree are painted and lines have to be painted dashed.
Looking into RI - they are invoked when
/** UI property for painting dashed lines */
private boolean lineTypeDashed;
is set to true.
This property is private so I cannot access and change it.
And it is initialized as:
lineTypeDashed = UIManager.getBoolean("Tree.lineTypeDashed");
While "Tree.lineTypeDashed" is not part of the spec
So for applications and the tests the only way to make sure that the methods are invoked is to set "Tree.lineTypeDashed" to 'true' somehow which is not good as it's not an official property and its name might get changed or removed.