Added explicit public constructor
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137043 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
06ad5b4b6b
commit
55ca32bd2e
|
@ -63,10 +63,19 @@ import java.util.LinkedList;
|
|||
*
|
||||
* @author <a href="bayard@generationjava.com">Henri Yandell</a>
|
||||
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
|
||||
* @version $Id: CharSetUtils.java,v 1.3 2002/07/21 20:19:50 bayard Exp $
|
||||
* @version $Id: CharSetUtils.java,v 1.4 2002/09/18 19:55:32 scolebourne Exp $
|
||||
*/
|
||||
public class CharSetUtils {
|
||||
|
||||
/**
|
||||
* CharSetUtils instances should NOT be constructed in standard programming.
|
||||
* Instead, the class should be used as <code>CharSetUtils.evaluateSet(null);</code>.
|
||||
* This constructor is public to permit tools that require a JavaBean instance
|
||||
* to operate.
|
||||
*/
|
||||
public CharSetUtils() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a CharSetUtils object which allows a certain amount of
|
||||
* set logic to be performed upon the following syntax:
|
||||
|
|
Loading…
Reference in New Issue