01: /**
02: * $RCSfile: UuiEndStep.java,v $
03: * @creation 02/04/00
04: * @modification $Date: 2002/06/20 17:35:45 $
05: */package com.memoire.vainstall.uui;
06:
07: import com.memoire.vainstall.*;
08:
09: /**
10: * @version $Id: UuiEndStep.java,v 1.1 2002/06/20 17:35:45 desnoix Exp $
11: * @author Axel von Arnim
12: */
13:
14: public class UuiEndStep extends UuiDefaultStep implements VAEndStep {
15:
16: public void setStats(VAStats stats) {
17: System.out.println(stats.getSuccessReport());
18: }
19: }
|