/*-------------------------------------------------------------------------
*
* command.h
* prototypes for command.c.
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $I
Command sequence
This is a sequence of any the following command formats, where
each command is terminated by a semicolon or newline. Long command
lines can be extended by using a back-s
package com.javapatterns.command.audioplayer2;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}