cvs -q diff -w -i src\share\org\apache\commons\validator\Arg.java (in directory C:\dev\jakarta-commons\validator\)
Index: src/share/org/apache/commons/validator/Arg.java
===================================================================
RCS file: /home/cvspublic/jakarta-commons/validator/src/share/org/apache/commons/validator/Arg.java,v
retrieving revision 1.4
diff -w -i -r1.4 Arg.java
101a102,106
>    /**
>     * If this argument is a message resource, specify the bundle in which
>     * I should look for this argument
>     */
>    protected String bundle = null;
144a150,167
> 
>    /**
>     * Gets the bundle in which we retrieve the key value
>     * @return the bundle name
>     */
>    public String getBundle() {
>       return bundle;
>    }
> 
>    /**
>     * Set the bundle in which we retrieve the key value
>     * @param unBundle the bundle name
>     */
>    public void setBundle(String unBundle) {
>       bundle = unBundle;
>    }
> 
> 
