/*
 * NIST
 * MirthMessageExtend.java Jun 18, 2008
 *
 * This code was produced by the National Institute of Standards and
 * Technology (NIST). See the "nist.disclaimer" file given in the distribution
 * for information on the use and redistribution of this software.
 */

package gov.nist.hl7.testengine.analyzeresults;

import gov.nist.hl7.testframework.MirthMessage;

public class MirthMessageExtend extends MirthMessage {

    protected String name;

    /**
     * @return the name
     */
    public String getName() {
        return name;
    }

    /**
     * @param name the name to set
     */
    public void setName(String name) {
        this.name = name;
    }
}
