/* -*- tab-width: 4 -*-
*
* Electric(tm) VLSI Design System
*
* File: Command.java
* Asynchronous Logic Simulator command handler
* Original C Code written by Brent Serbin and Peter J. Gallant
/* Command.java
{{IS_NOTE
Purpose:
Description:
History:
Fri Aug 18 00:07:15 2006, Created by tomyeh
}}IS_NOTE
Copyright (C) 2006 Potix Corporation. All Rights Reserved.
{{IS_RIGHT
package com.javapatterns.command.audioplayer2;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}