Details
-
Type: New Feature
-
Status: Closed
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.2
-
Component/s: None
-
Labels:None
Description
ConventionalStringConverter is a converter that assumes two things about the class that is passed into its ctor ..
1) There is a single string parameter for the constructor of the class that its helping
2) toString() does something meaningful on the same class.
Like so ...
public class Foo {
private foo;
public Foo(String foo)
public String toString()
{ return foo; }}
How about renaming it StringConstructableConverter?