Re: [LANG] Request for opinions

2009-06-16 Thread Henri Yandell
Very useful, and very similar to my intent. (And thanks for the reply :) ). Currently I have a parent class, but that's because originally this was an extension of FilterWriter. I suspect I'll go interface. I don't have escape and unescape separately because I claim they're the same concept, and t

Re: [LANG] Request for opinions

2009-06-15 Thread Michael Wooten
I'm just some random user, but I have no opposition to including a framework in Lang. For projects that I have worked on, I found a very useful pattern for frameworks like this that have a fairly fixed set of operations. I usually like to define an interface, which in this case could be something

[LANG] Request for opinions

2009-06-14 Thread Henri Yandell
I've rewritten StringEscapeUtils by putting a mini-framework underneath it: https://issues.apache.org/jira/browse/LANG-505 On the one hand, Lang has not been a place for frameworks. On the other hand, StringEscapeUtils has repeatedly shown a need to be much more pluggable and not tie the user int