c56bb778132964b94e4b7aadad008021159dbabd
[org.ibex.util.git] / src / org / ibex / util / Callback.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.util;
6
7 /** a simple interface for callbacks*/
8 public interface Callback {
9
10     public abstract Object call(Object arg);
11
12 }