blob: e3aad47a8f4a754f72f26ba34e603af4ad014053 [file]
//
// Tapestry Web Application Framework
// Copyright (c) 2000-2002 by Howard Lewis Ship
//
// Howard Lewis Ship
// http://sf.net/projects/tapestry
// mailto:hship@users.sf.net
//
// This library is free software.
//
// You may redistribute it and/or modify it under the terms of the GNU
// Lesser General Public License as published by the Free Software Foundation.
//
// Version 2.1 of the license should be included with this distribution in
// the file LICENSE, as well as License.html. If the license is not
// included with this distribution, you may find a copy at the FSF web
// site at 'www.gnu.org' or 'www.fsf.org', or you may write to the
// Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139 USA.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied waranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
package net.sf.tapestry;
/**
* Represents a change to a component on a page, this represents
* a datum of information stored by a {@link IPageRecorder}.
*
* @author Howard Lewis Ship
* @version $Id$
**/
public interface IPageChange
{
/**
* The path to the component on the page, or null if the property is a property
* of the page.
*
**/
public String getComponentPath();
/**
* The new value for the property, which may be null.
*
**/
public Object getNewValue();
/**
* The name of the property that changed.
*
**/
public String getPropertyName();
}