- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
about scalabeans 0.1
Tue, 2011-05-17, 18:31
Hi,
Just saw the announcement about scalabeans, I've been desperately
needing something like this, thanks. Does it have something like java
bean property editor support? so I can take a date as a string and
have it make a date instance for a property?
eg:
class Account(created:Date)
val descriptor = descriptorOf[Account]
val builder = descriptor.newBuilder()
// add some property editor ?
builder.set(descriptor("created"), "2011-10-10 12:12:12 GMT")
val accountWithDate = builder.result()
///
Really nice work, thanks,
Mike
Hi Mike,
No, there is nothing like PropertyEditor yet. Sounds like a nice
feature, we will think about it. Has many applications actually, not
only for GUI frameworks but also for serialization to/from text-based
formats like JSON and XML.
Thanks for your feedback!
Regards,
Alexander Dvorkovyy