import com.jacob.com.*;
public class Command extends Dispatch
{
public Command()
{
super("ADODB.Command");
}
/**
* This constructor is used instead of a case operation to
*
package org.hibernate.auction.command;
import java.io.Serializable;
/**
* The interface for generic commands between presentation and business tier.
*
* @author Christian Bauer
/* $Id: command.c,v 1.4.10.1 2001/09/23 22:24:59 kai Exp $
*
* Copyright (C) 1996 SpellCaster Telecommunications Inc.
*
* This software may be used and distributed according to the terms
* of th
/********************************************************************
* Description: command.c
* emcmotCommandhandler() takes commands passed from user space and
* performs various functions based
package com.javapatterns.command.audioplayer2;
/**
* This class plays the role of Abstract Command
*/
public interface Command
{
public abstract void execute ( );
}