Esempio n. 1
0
 /**
  * Hides the route bar, which implicitly means that all locations are gone. Thus, just to be safe,
  * clears the data structures again.
  */
 public void close() {
   routeFlow2.clear();
   routeFlow2.setVisible(false);
   title.setText("沒有內容啦");
   // UserInfoViewController.message("There are currently no locations on the map. Please start
   // typing one.");
 }
Esempio n. 2
0
 public FavoritePanel() {
   title.setStyleName("tabTitle");
   routeTab.add(title);
   routeTab.add(routeFlow2);
   initWidget(routeTab);
   this.setStyleName("favoritePanel");
   routeFlow2.setVisible(false);
 }
Esempio n. 3
0
 /**
  * Shows the route bar, and tries pitifully to try to make it scrollable. ensures that we're on
  * this tab, too.
  */
 private void open() {
   routeFlow2.setVisible(true);
   title.setText("別人認定項目");
 }