16cba39d40a5cf7d43dd7f43e120eb280d4f3dce
[org.ibex.core.git] / src / org / xwt / util / Callback.java
1 // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.xwt.util;
3
4 /** a simple interface for callbacks*/
5 public interface Callback {
6
7     public abstract Object call(Object arg);
8
9 }