I have a bean with properties whose types are non bean compliant Java classes --
java.awt.Point, java.awt.Dimension and java.awt.KeyStroke. The xml is written
correctly, but after parsing, the resulting instances don't have the right values
since Point, Dimension and KeyStroke are not beans.
Has anyone already solved this problem?
Thanks,
Pam
Ex:
<?xml version="1.0" encoding="UTF-8"?>
<Point>
<x>10.0</x>
<y>15.0</y>
</Point>
BeanReader reader = new BeanReader();
reader.registerBeanClass("Point", java.awt.Point.class);
Point p = (Point)reader.parse...
The resulting point is not [10,15] since there is no setX() and setY() on
java.awt.Point.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]