Hi Julius,
> public void setAllowedNames( String[] allowedNames )
> {
> this.allowedNames = allowedNames;
> }
I like the idea. But you might want to keep the names in
an internal collection (ArrayList/LinkedList) and offer
addAllowedName(String)
addAllowedNames(String[])
clearAllowedNames()
instead of passing in an array. That makes sure that the
internal data structure is not modified uncontrolled.
cheers,
Roland
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]