001package de.monochromata;
002
003/**
004 * A generic interface for strategies.
005 */
006public interface Strategy {
007
008        /**
009         * Returns a short mnemonic string that uniquely identifies this strategy
010         * among the type of strategies it belongs to.
011         *
012         * @return the kind of strategy
013         */
014        public String getKind();
015}