Implementation is thread-safe.
API class
@author Roman Stumm
@author Carlos Vara
ClassValidator
validates the string argument values are class names. The following example shows how to validate the 'logger' argument value is a class name, that can be instantiated. ... ClassValidator validator = new ClassValidator(); validator.setInstance(true); ArgumentBuilder builder = new ArgumentBuilder(); Argument logger = builder.withName("logger"); .withValidator(validator);@author John Keyes
|
|