From: Brad <bra...@us...> - 2005-10-19 01:22:45
|
Update of /cvsroot/archive-access/archive-access/projects/wayback/src/java/org/archive/wayback/ippreplayui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv901/src/java/org/archive/wayback/ippreplayui Modified Files: InPagePresenceReplayUI.java Log Message: lots of javadoc comments Index: InPagePresenceReplayUI.java =================================================================== RCS file: /cvsroot/archive-access/archive-access/projects/wayback/src/java/org/archive/wayback/ippreplayui/InPagePresenceReplayUI.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InPagePresenceReplayUI.java 18 Oct 2005 02:30:49 -0000 1.1 --- InPagePresenceReplayUI.java 19 Oct 2005 01:22:37 -0000 1.2 *************** *** 1,2 **** --- 1,25 ---- + /* InPagePresenceReplayUI + * + * Created on 2005/10/18 14:00:00 + * + * Copyright (C) 2005 Internet Archive. + * + * This file is part of the Wayback Machine (crawler.archive.org). + * + * Wayback Machine is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or + * any later version. + * + * Wayback Machine 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 Lesser Public License for more details. + * + * You should have received a copy of the GNU Lesser Public License + * along with Wayback Machine; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package org.archive.wayback.ippreplayui; *************** *** 14,22 **** import org.archive.wayback.rawreplayui.RawReplayUI; public class InPagePresenceReplayUI extends RawReplayUI { public InPagePresenceReplayUI() { super(); - // TODO Auto-generated constructor stub } --- 37,55 ---- import org.archive.wayback.rawreplayui.RawReplayUI; + /** + * ReplayUI that inserts a DIV HTML tag at the end of a returned HTML document. + * Unused at present -- presently a proof of concept second ReplayUI + * implementation. + * + * @author Brad Tofel + * @version $Date$, $Revision$ + */ public class InPagePresenceReplayUI extends RawReplayUI { + /** + * Constructor + */ public InPagePresenceReplayUI() { super(); } |