30eec80f9a2cbecfcafe84268712a41f2b2967ca
[org.ibex.core.git] / src / org / xwt / Message.java
1 // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.xwt;
3
4 /** A simple interface that must be supported by any object inserted into the MessageQueue. */
5 public interface Message {
6
7     /** Invoked when the Message is dequeued. */
8     public void perform();
9
10 }
11