1 16 package com.google.gwt.user.client.impl; 17 18 import com.google.gwt.user.client.History; 19 20 24 public abstract class HistoryImpl { 25 26 protected static void onHistoryChanged(String historyToken) { 27 History.onHistoryChanged(historyToken); 28 } 29 30 public native String getToken() ; 33 34 public abstract boolean init(); 35 36 public abstract void newItem(String historyToken); 37 38 protected native void setToken(String token) ; 41 } 42 | Popular Tags |