Add explicit public constructor
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137306 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e11a2eb63d
commit
81b579a7eb
|
@ -62,10 +62,21 @@ import java.util.StringTokenizer;
|
||||||
* @author Henri Yandell
|
* @author Henri Yandell
|
||||||
* @author Stephen Colebourne
|
* @author Stephen Colebourne
|
||||||
* @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
|
* @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
|
||||||
* @version $Id: WordWrapUtils.java,v 1.1 2003/04/15 14:28:41 bayard Exp $
|
* @version $Id: WordWrapUtils.java,v 1.2 2003/04/26 16:17:05 scolebourne Exp $
|
||||||
*/
|
*/
|
||||||
public class WordWrapUtils {
|
public class WordWrapUtils {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p><code>WordWrapUtils<code> instances should NOT be constructed in
|
||||||
|
* standard programming. Instead, the class should be used as
|
||||||
|
* <code>WordWrapUtils.woodWrap("foo bar");</code>.</p>
|
||||||
|
*
|
||||||
|
* <p>This constructor is public to permit tools that require a JavaBean
|
||||||
|
* instance to operate.</p>
|
||||||
|
*/
|
||||||
|
public WordWrapUtils() {
|
||||||
|
}
|
||||||
|
|
||||||
// Wrapping
|
// Wrapping
|
||||||
//--------------------------------------------------------------------------
|
//--------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue