01: /* 02: * Copyright (c) Mateusz Prokopowicz. All Rights Reserved. 03: */ 04: 05: package com.technoetic.xplanner; 06: 07: /** 08: * User: mprokopowicz 09: * Date: Feb 9, 2006 10: * Time: 1:47:32 PM 11: */ 12: public interface Command { 13: void execute(); 14: }