betwixt is bean-centric. it's support for other types is pretty basic at the moment (i'm afraid). i don't know of any way to do this in betwixt at the moment.
but this is a pretty common use case so there's a chance that something like this could get implemented sooner rather than later. i'll have a think about the design.
- robert
On 10 Mar 2004, at 21:25, Smith, Pamela wrote:
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]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
