
com.jpattern.gwt.client.history.DirectHistoryEngine Maven / Gradle / Ivy
package com.jpattern.gwt.client.history;
/**
*
* @author Francesco Cina
*
* 02/ago/2011
*/
public class DirectHistoryEngine implements IHistoryEngine {
private IHistoryManager historyManager;
@Override
public void registerEvent(String token) {
historyManager.onEvent(token);
}
@Override
public void init(IHistoryManager historyManager) {
this.historyManager = historyManager;
}
@Override
public void updateState() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy