01: /**
02: * $RCSfile: UuiShortcutStep.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: UuiShortcutStep.java,v 1.1 2002/06/20 17:35:45 desnoix Exp $
11: * @author Ewout Prangsma
12: */
13:
14: public class UuiShortcutStep extends UuiDefaultStep implements
15: VAShortcutStep {
16: public boolean isShortcutAccepted() {
17: return true;
18: }
19: }
|