Java PrimerMethod Properties in Java
- By by Dirk Riehle
- April 18, 2000
Listing 13. The "StringName(String)" convenience constructor.
/**
* @methodtype constructor
* @methodproperties convenience
*/
public StringName(String name) {
this(name, DELIMITER_CHAR, ESCAPE_CHAR);
}