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

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

package com.jpattern.gwt.client.navigationevent;

import java.util.Map;

import com.jpattern.gwt.client.presenter.IPresenter;
import com.jpattern.gwt.client.presenter.NullPresenter;

/**
 * 
 * @author Francesco Cina
 *
 * 01/ago/2011
 */
public class NullNavigationEvent implements INavigationEvent {

	@Override
	public String getName() {
		return "";
	}

	@Override
	public void notifyNavigationEvent(IPresenter parentPresenter, Map queryStringValues, boolean registerEvent) {
	}

	@Override
	public IPresenter launch(IPresenter parentPresenter, Map queryStringValues, String childInitialEventName) {
		return new NullPresenter();
	}

	@Override
	public IPresenter launch(IPresenter parentPresenter, Map queryStringValues) {
		return new NullPresenter();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy