Java PrimerMethod Properties in Java
- By by Dirk Riehle
- April 18, 2000
Listing 14. The "StringName(String, char, char)" constructor.
/**
* @methodtype constructor
* @methodproperties composed
*/
public StringName(String name, char delimiter, char escape) {
super();
initialize(name, delimiter, escape);
}