1 package org.snipsnap.snip.label; 2 3 import org.apache.lucene.document.Document; 4 5 /* 6 * This file is part of "SnipSnap Wiki/Weblog". 7 * 8 * Copyright (c) 2002 Stephan J. Schmidt, Matthias L. Jugel 9 * All Rights Reserved. 10 * 11 * Please visit http://snipsnap.org/ for updates and contact. 12 * 13 * --LICENSE NOTICE-- 14 * This program is free software; you can redistribute it and/or 15 * modify it under the terms of the GNU General Public License 16 * as published by the Free Software Foundation; either version 2 17 * of the License, or (at your option) any later version. 18 * 19 * This program is distributed in the hope that it will be useful, 20 * but WITHOUT ANY WARRANTY; without even the implied warranty of 21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 22 * GNU General Public License for more details. 23 * 24 * You should have received a copy of the GNU General Public License 25 * along with this program; if not, write to the Free Software 26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 27 * --LICENSE NOTICE-- 28 */ 29 30 /** 31 * Objects that are indexable with lucene 32 * 33 * @author Stephan Schmidt 34 * @version $Id: Indexable.java 965 2003-09-04 09:08:26Z stephan $ 35 */ 36 public interface Indexable { 37 void index(Document document); 38 } 39