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

com.jpattern.gwt.client.navigationevent.NullNavigationEventData Maven / Gradle / Ivy

There is a newer version: 2.45.7
Show newest version
package com.jpattern.gwt.client.navigationevent;

import com.google.gwt.user.client.ui.HasWidgets;
import com.jpattern.gwt.client.view.NullHasWidgets;

/**
 * 
 * @author Francesco Cina
 *
 * 03/ago/2011
 */
public class NullNavigationEventData implements INavigationEventData {

	private final INavigationEventWrapper navigationEvent = new NullNavigationEventWrapper();
	private final INavigationEventCallback navigationEventCallback = new NullNavigationEventCallback();
	private final HasWidgets eventTarget = new NullHasWidgets();

	@Override
	public INavigationEventWrapper getNavigationEventWrapper() {
		return navigationEvent;
	}

	@Override
	public INavigationEventCallback getNavigationEventCallback() {
		return navigationEventCallback;
	}

	@Override
	public HasWidgets getEventTarget() {
		return eventTarget;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy