projects
/
org.ibex.core.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
2003/09/07 05:30:41
[org.ibex.core.git]
/
src
/
org
/
xwt
/
Message.java
1
// Copyright 2002 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