From: <the...@us...> - 2003-12-16 10:52:34
|
Update of /cvsroot/junk/junk/WEB-INF/classes/junk/util In directory sc8-pr-cvs1:/tmp/cvs-serv32599 Added Files: OnlineIteratorProvider.java Log Message: initial release --- NEW FILE: OnlineIteratorProvider.java --- /* * juNK - a file search system for smb shares * * Copyright 2003 by Marcus Proest (theevilflow at users dot sf dot net) * * This file is part of junk (java useful net kollektor). * * junk is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * junk is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with junk; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ package junk.util; import java.util.Iterator; /** * Interface to provide an Iterator over the Online IP's * @author Marcus Proest (theevilflow at users dot sf dot net) */ public interface OnlineIteratorProvider { /** get an Iterator over the online IP's * @return an Iterator over the online IP's */ public Iterator getOnlineIterator(); } |