X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Futil%2FCallback.java;fp=src%2Forg%2Fibex%2Futil%2FCallback.java;h=471df9b59549fa3801e1dfce352fc90db837791f;hb=3591b88b94a6bb378af3d4abe6eb5233ce583104;hp=0000000000000000000000000000000000000000;hpb=de378041d5ca2aca1a2b5a31ef15ae90a86c977f;p=org.ibex.core.git diff --git a/src/org/ibex/util/Callback.java b/src/org/ibex/util/Callback.java new file mode 100644 index 0000000..471df9b --- /dev/null +++ b/src/org/ibex/util/Callback.java @@ -0,0 +1,15 @@ +// Copyright (C) 2003 Adam Megacz all rights reserved. +// +// You may modify, copy, and redistribute this code under the terms of +// the GNU Library Public License version 2.1, with the exception of +// the portion of clause 6a after the semicolon (aka the "obnoxious +// relink clause") + +package org.ibex.util; + +/** a simple interface for callbacks*/ +public interface Callback { + + public abstract Object call(Object arg); + +}