m-m-m / util

Mature Modular Meta-Framework
http://m-m-m.sourceforge.net
Apache License 2.0
10 stars 5 forks source link

Add StringWritable interface and abstract implementation #221

Closed hohwille closed 7 years ago

hohwille commented 7 years ago

For objects that allow to append their string representation to an Appendable we will add an interface StringWritable that declares a write(Appendable) method. The AbstractStringWritable will implement toString() and write(Appendable) that shall delegate to an abstract protected doWrite method.

hohwille commented 7 years ago

implemented and merged.