1 /* 2 Copyright (c) 2003 eInnovation Inc. All rights reserved 3 4 This library is free software; you can redistribute it and/or modify it under the terms 5 of the GNU Lesser General Public License as published by the Free Software Foundation; 6 either version 2.1 of the License, or (at your option) any later version. 7 8 This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 9 without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 10 See the GNU Lesser General Public License for more details. 11 */ 12 13 /* 14 * Created on Apr 18, 2003 15 * 16 */ 17 package com.openedit; 18 19 import com.openedit.page.Page; 20 21 22 /** 23 * DOCUMENT ME! 24 * 25 * @author cburkey 26 */ 27 public interface PageAccessListener 28 { 29 /** 30 * DOCUMENT ME! 31 * 32 * @param inPage 33 * @param inRevision 34 * 35 * @throws OpenEditException 36 */ 37 public void pageAdded(Page inPage); 38 39 /** 40 * DOCUMENT ME! 41 * 42 * @param inPage 43 * @param inRevision 44 * 45 * @throws OpenEditException 46 */ 47 public void pageModified(Page inPage); 48 49 /** 50 * DOCUMENT ME! 51 * 52 * @param inPage 53 * @param inRevision 54 * 55 * @throws OpenEditException 56 */ 57 public void pageRemoved(Page inPage); 58 59 /** 60 * DOCUMENT ME! 61 * 62 * @param inPage 63 * 64 * @throws OpenEditException 65 */ 66 public void pageRequested(Page inPage); 67 } 68