Type | Changes | By |
---|
| Added ArgumentValidation method: 'public boolean isValidCollectionWhenNoNulls(String argumentName, Collection<?> argumentValue)'. | TjeerdVerhagen |
| Added ArgumentValidation method: 'public boolean isValidCollectionWhenMinElements(String argumentName, Collection<?> argumentValue, int minElements)'. | TjeerdVerhagen |
| Updated ArgumentValidationImpl to create a validation type specific message. Meaning that the first word (before always 'Argument')
in a message can now be chosen freely. This makes checking of values in other situations nicer. Example could be
'Property 'name' should not be null.' | TjeerdVerhagen |
| Added utility for loading property files (PropertiesLoader). | TjeerdVerhagen |
| Added Swing TableModel for PackageInfo instances (PackageInfoTableModel). | TjeerdVerhagen |
| Added Swing TableModel for ManifestInfo instances (ManifestInfoTableModel). | TjeerdVerhagen |
| Upgraded to Sun 'Java Developer Kit v1.5'.
Updated implementation with generics. | TjeerdVerhagen |
| Changed from Apache 'commons-logging' into 'slf4j v1.5.8' (Simple Logging Facade for Java). | TjeerdVerhagen |
| Upgraded from 'junit v3.8.2' to 'junit v4.7'. | TjeerdVerhagen |
| Upgraded from 'jdom v1.0' to 'jdom v1.1'. | TjeerdVerhagen |
| Added Apache 'commons-lang v2.4'. | TjeerdVerhagen |
| Modified ArgumentValidation configuration properties, to use new way of mapped properties 'map[key].xxx = value'.
For regular expression | TjeerdVerhagen |
| Added new collection config CollectionUtilConfigFactory.CONFIG_TEXT_UNORDERED_LIST which creates a ascii
text list of items. Each item is prefixes with a dash followed by a space '- '. | TjeerdVerhagen |
| Added CollectionUtil method: 'public static StringBuffer toString(StringBuffer strBuf, Map patternMap, CollectionUtilConfig config)'.
Now makes use of config. | TjeerdVerhagen |
| Added CollectionUtil method: 'toString(java.util.Map patternMap, CollectionUtilConfig config)'. | TjeerdVerhagen |
| Added ArgumentValidation method: 'public boolean isValidWhenDirectory(String argumentName, String argumentValue)'. | TjeerdVerhagen |
| Added ArgumentValidation method: 'public boolean isValidWhenFile(String argumentName, String argumentValue)'. | TjeerdVerhagen |
| Added ArgumentValidation method: 'public boolean isValidWhenUrl(String argumentName, String argumentValue)'. | TjeerdVerhagen |
| Added ArgumentValidation method: 'public boolean isValidMatchingDateFormat(String argumentName, String argumentValue, DateFormat dateFormat)'. | TjeerdVerhagen |