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

org.webswing.toolkit.api.url.WebswingUrlStateChangeEvent Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.toolkit.api.url;

/**
 * Event representing change of Url in browser.
 */
public interface WebswingUrlStateChangeEvent {

	/**
	 * @return the new url in full form
	 */
	String getFullUrl();

	/**
	 * @return URL state parsed from the hash fragmet part of URL
	 */
	WebswingUrlState getState();


	/**
	 * @return Previous Url state
	 */
	WebswingUrlState getOldState();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy