com.gargoylesoftware.htmlunit.WebWindowEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client-compiler-deps Show documentation
Show all versions of vaadin-client-compiler-deps Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
* Copyright (c) 2002-2011 Gargoyle Software Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.gargoylesoftware.htmlunit;
import java.util.EventObject;
/**
* An event that will be fired when a WebWindow changes.
*
* @version $Revision: 6204 $
* @author Mike Bowler
* @author David K. Taylor
*/
public final class WebWindowEvent extends EventObject {
private final Page oldPage_;
private final Page newPage_;
private final int type_;
/** A window has opened. */
public static final int OPEN = 1;
/** A window has closed. */
public static final int CLOSE = 2;
/** The content of the window has changed. */
public static final int CHANGE = 3;
/**
* Creates an instance.
*
* @param webWindow the WebWindow that caused the event
* @param type the type - one of {@link #OPEN}, {@link #CLOSE} or {@link #CHANGE}
* @param oldPage the old contents of the web window
* @param newPage the new contents of the web window
*/
public WebWindowEvent(
final WebWindow webWindow,
final int type,
final Page oldPage,
final Page newPage) {
super(webWindow);
oldPage_ = oldPage;
newPage_ = newPage;
switch(type) {
case OPEN:
case CLOSE:
case CHANGE:
type_ = type;
break;
default:
throw new IllegalArgumentException(
"type must be one of OPEN, CLOSE, CHANGE but got " + type);
}
}
/**
* Returns true if the two objects are equal.
*
* @param object the object to compare against
* @return true if the two objects are equal
*/
@Override
public boolean equals(final Object object) {
if (null == object) {
return false;
}
if (getClass() == object.getClass()) {
final WebWindowEvent event = (WebWindowEvent) object;
return isEqual(getSource(), event.getSource())
&& getEventType() == event.getEventType()
&& isEqual(getOldPage(), event.getOldPage())
&& isEqual(getNewPage(), event.getNewPage());
}
return false;
}
/**
* Returns the hash code for this object.
* @return the hash code for this object
*/
@Override
public int hashCode() {
return source.hashCode();
}
/**
* Returns the oldPage.
* @return the page or null if the window has no page
*/
public Page getOldPage() {
return oldPage_;
}
/**
* Returns the oldPage.
* @return the page or null if the window has no page
*/
public Page getNewPage() {
return newPage_;
}
/**
* Returns the web window that fired the event.
* @return the web window that fired the event
*/
public WebWindow getWebWindow() {
return (WebWindow) getSource();
}
private boolean isEqual(final Object object1, final Object object2) {
final boolean result;
if (object1 == null && object2 == null) {
result = true;
}
else if (object1 == null || object2 == null) {
result = false;
}
else {
result = object1.equals(object2);
}
return result;
}
/**
* Returns a string representation of this event.
* @return a string representation of this event
*/
@Override
public String toString() {
final StringBuilder buffer = new StringBuilder(80);
buffer.append("WebWindowEvent(source=[");
buffer.append(getSource());
buffer.append("] type=[");
switch(type_) {
case OPEN:
buffer.append("OPEN");
break;
case CLOSE:
buffer.append("CLOSE");
break;
case CHANGE:
buffer.append("CHANGE");
break;
default:
buffer.append(type_);
break;
}
buffer.append("] oldPage=[");
buffer.append(getOldPage());
buffer.append("] newPage=[");
buffer.append(getNewPage());
buffer.append("])");
return buffer.toString();
}
/** @return the event type */
public int getEventType() {
return type_;
}
}