package lectures.mvc.properties;
import util.annotations.WebDocuments;

import java.beans.PropertyChangeEvent;

@WebDocuments({"Lectures/MvcProperties.pptx", "Lectures/MvcProperties.pdf", "Videos/MvcProperties.avi"})
public class PropertyEventPrinter {
    public static void main (String[] args) {
        System.out.println(new PropertyChangeEvent("test", "this", "old value", "new value"));
    }

}