Author: toad
Date: 2008-03-22 15:23:11 +0000 (Sat, 22 Mar 2008)
New Revision: 18720
Added:
trunk/freenet/src/freenet/support/RandomGrabArrayItemExclusionList.java
Log:
Missing file.
Added: trunk/freenet/src/freenet/support/RandomGrabArrayItemExclusionList.java
===================================================================
--- trunk/freenet/src/freenet/support/RandomGrabArrayItemExclusionList.java
(rev 0)
+++ trunk/freenet/src/freenet/support/RandomGrabArrayItemExclusionList.java
2008-03-22 15:23:11 UTC (rev 18720)
@@ -0,0 +1,13 @@
+/* This code is part of Freenet. It is distributed under the GNU General
+ * Public License, version 2 (or at your option any later version). See
+ * http://www.gnu.org/ for further details of the GPL. */
+package freenet.support;
+
+public interface RandomGrabArrayItemExclusionList {
+
+ /**
+ * Whether this item can be returned right now.
+ */
+ public boolean exclude(RandomGrabArrayItem item);
+
+}