Or just use lang.CharSet

On Fri, 14 Nov 2003 16:58:45 -0500, "Inger, Matthew" <[EMAIL PROTECTED]>
said:
> What about an interface:
> 
> public class DelimitedTokenizer {
> 
>    public static interface DelimiterSet {
>        public boolean isDelimiter(char c);
>    }
> }
> 
> and having the ability to pass in this
> interface.  Of course, we'd still have a
> single char version as well, so someone
> might pass either a single char or an implementation
> of this interface as the delimiter.  I suppose I could
> do the same thing for quotes, but i find that less useful.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to