// AttributeChangedEvent
// $Id: AttributeChangeEvent.java,v 1.5 2000/08/16 21:37:28 ylafon Exp $
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html

package org.w3c.jigadm.events ;

import java.beans.PropertyChangeEvent;

import org.w3c.jigadm.RemoteResourceWrapper;

public class AttributeChangeEvent extends PropertyChangeEvent {

    /**
     * Creates an AttributeChangeEvent
     * this correspond to a change in one Attribute of one resource
     * @param source The resource whose attribute has changed.
     * @param name The name of the attribute that has changed.
     * @param oldvalue The old attribute value.
     * @param newvalue The new attribuyte value.
     */

    public AttributeChangeEvent(Object source, String name
				, Object oldvalue, Object newvalue) {
	super(source, name, oldvalue, newvalue);
    }
}    
