Rev 1 | Rev 13 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.del.client;import org.tela_botanica.del.client.history.ApplicationHistoryChangeHandler;import org.tela_botanica.del.client.history.NavigationStatesConstants;import com.google.gwt.core.client.EntryPoint;import com.google.gwt.user.client.History;public class Del implements EntryPoint {@Overridepublic void onModuleLoad() {History.addValueChangeHandler(new ApplicationHistoryChangeHandler());// displays init pageHistory.newItem(NavigationStatesConstants.MAIN_PAGE, true);History.fireCurrentHistoryState();}}