/*
 * Copyright (c) 2001, 2002 The XDoclet team
 * All rights reserved.
 */
package xdoclet.retest;

/**
 * @author    Ara Abrahamian (ara_e_w@yahoo.com)
 * @created   May 31, 2002
 * @version   $Revision: 1.2 $
 */
public final class XDocletRetestMessages
{
    /**
     * @msg.bundle   msg="{0} is not an interface"
     */
    public final static String IS_NOT_AN_INTERFACE = "IS_NOT_AN_INTERFACE";

    /**
     * @msg.bundle   msg="{0} is not a class"
     */
    public final static String IS_NOT_A_CLASS = "IS_NOT_A_CLASS";

    /**
     * @msg.bundle   msg="Mismatched number of interfaces between {0} and {1}"
     */
    public final static String MISMATCH_NUMBER_INTERFACE = "MISMATCH_NUMBER_INTERFACE";

    /**
     * @msg.bundle   msg="Interface {0} defined only in {1}"
     */
    public final static String INTERFACE_DEFINED_ONLY_IN = "INTERFACE_DEFINED_ONLY_IN";

    /**
     * @msg.bundle   msg="Method {0} defined only in {1}"
     */
    public final static String METHOD_DEFINED_ONLY_IN = "METHOD_DEFINED_ONLY_IN";

    /**
     * @msg.bundle   msg="Method {0} does not have same name as method {1}"
     */
    public final static String METHOD_DOES_NOT_HAVE_SAME_NAME = "METHOD_DOES_NOT_HAVE_SAME_NAME";

    /**
     * @msg.bundle   msg="Method {0} does not have same return type: {1} and {2}"
     */
    public final static String METHOD_DOES_NOT_HAVE_SAME_RETURN_TYPE = "METHOD_DOES_NOT_HAVE_SAME_RETURN_TYPE";

    /**
     * @msg.bundle   msg="Method {0} and {1} does not have same number of parameters"
     */
    public final static String METHOD_DOES_NOT_HAVE_SAME_NUMBER_OF_PARAM = "METHOD_DOES_NOT_HAVE_SAME_NUMBER_OF_PARAM";

    /**
     * @msg.bundle   msg="Method {0} and {1} does not have same Type of parameters"
     */
    public final static String METHOD_DOES_NOT_HAVE_SAME_TYPE_OF_PARAM = "METHOD_DOES_NOT_HAVE_SAME_TYPE_OF_PARAM";

    /**
     * @msg.bundle   msg="Method {0} and {1} does not have same number of exceptions"
     */
    public final static String METHOD_DOES_NOT_HAVE_SAME_NUMBER_OF_EXCEPTIONS = "METHOD_DOES_NOT_HAVE_SAME_NUMBER_OF_EXCEPTIONS";

    /**
     * @msg.bundle   msg="Method {0} and {1} does not have same Type of exceptons"
     */
    public final static String METHOD_DOES_NOT_HAVE_SAME_TYPE_OF_EXCEPTIONS = "METHOD_DOES_NOT_HAVE_SAME_TYPE_OF_EXCEPTIONS";

    /**
     * @msg.bundle   msg="A difference exists between the two XMLs : {0}"
     */
    public final static String XML_DIFF = "XML_DIFF";
}
