package org.trianacode.shiwaall.dax;
// TODO: Auto-generated Javadoc
/**
* Created by IntelliJ IDEA.
* User: Ian Harvey
* Date: 19/05/2011
* Time: 23:14
* To change this template use File | Settings | File Templates.
*/
public interface Displayer {
/**
* Display message.
*
* @param string the string
*/
public void displayMessage(String string);
}