// -*- Mode: C++ -*- ----------------------------------------
//
// Copyright (c) 1996, Regents of the University of California
// $Header: /usr/local/devel/GiST/libGiST/RSTree/command.h,v 1.1.1.1 199
// -*- Mode: C++ -*- ----------------------------------------
//
// Copyright (c) 1996, Regents of the University of California
// $Header: /usr/local/devel/GiST/libGiST/BTree/command.h,v 1.1.1.1 1996
package com.javapatterns.command.audioplayer2;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}
package com.javapatterns.command.audioplayer;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}