01: /**
02: * $RCSfile: UuiWelcomeStep.java,v $
03: * @creation 11/06/01
04: * @modification $Date: 2002/06/20 17:35:45 $
05: */package com.memoire.vainstall.uui;
06:
07: import com.memoire.vainstall.*;
08:
09: /**
10: * Marker interface
11: * @version $Id: UuiWelcomeStep.java,v 1.1 2002/06/20 17:35:45 desnoix Exp $
12: * @author Henrik Falk
13: */
14:
15: public class UuiWelcomeStep extends UuiDefaultStep implements
16: VAWelcomeStep {
17: public UuiWelcomeStep() {
18: System.out.println("Welcome");
19: }
20: }
|