package generated.javacard.mondex.purse;

/**
 * Generated Class
 * 
 */
public class ResGetData extends Message implements Codeable {

	public PurseData dataTo;

	/**
	 * Constructor wich sets all attributes to a initial value
	 */
	public ResGetData() {
		dataTo = new PurseData();
	}

	/**
	 * Method for getting the typeflag
	 *
	 * @return den class-specific code
	 */
	public byte getCode() {
		return Code.RESGETDATA;
	}

	/**
	 * This method deeply checks equality of classes.
	 *
	 * @param other Class to compare with
	 * @return true, if values of all attributes are equal
	 */
	public boolean equals(Codeable other) {
		//The types of the objects have to match
		if (getCode() != other.getCode())
			return false;
		//Attributes of complex type: Use their equals-method
		if (!this.dataTo.equals(((ResGetData) other).dataTo))
			return false;
		return true;
	}

	public void copy(ResGetData from) {
		//Complex types: Use their copy-method.
		this.dataTo.copy(from.dataTo);
	}

}