All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.webkit.event.WCChangeEvent Maven / Gradle / Ivy

/*
 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
 */
package com.sun.webkit.event;

public final class WCChangeEvent {
    private final Object source;

    public WCChangeEvent(Object source) {
        if (source == null) {
            throw new IllegalArgumentException("null source");
        }
        this.source = source;
    }

    public Object getSource() {
        return source;
    }

    @Override
    public String toString() {
        return getClass().getName() + "[source=" + source + "]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy