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

com.ui4j.api.event.DocumentLoadEvent Maven / Gradle / Ivy

The newest version!
package com.ui4j.api.event;

import com.ui4j.api.dom.Document;
import com.ui4j.api.dom.Window;

public class DocumentLoadEvent {

    private Window window;

    public DocumentLoadEvent(Window window) {
        this.window = window;
    }

    public Window getWindow() {
        return window;
    }

    public Document getDocument() {
        return window.getDocument();
    }

	@Override
	public String toString() {
		return "DocumentLoadEvent [window=" + window + "]";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy