KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgroups > util > Command


1 // $Id: Command.java,v 1.1.1.1 2003/09/09 01:24:12 belaban Exp $
2

3 package org.jgroups.util;
4
5 /**
6   * The Command patttern (se Gamma et al.). Implementations would provide their
7   * own <code>execute</code> method.
8   * @author Bela Ban
9   */

10 public interface Command {
11     boolean execute();
12 }
13
Popular Tags