コード例 #1
0
ファイル: FavoritePanel.java プロジェクト: aik1king/waggle-ui
 /**
  * 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.");
 }
コード例 #2
0
ファイル: FavoritePanel.java プロジェクト: aik1king/waggle-ui
 public FavoritePanel() {
   title.setStyleName("tabTitle");
   routeTab.add(title);
   routeTab.add(routeFlow2);
   initWidget(routeTab);
   this.setStyleName("favoritePanel");
   routeFlow2.setVisible(false);
 }
コード例 #3
0
ファイル: FavoritePanel.java プロジェクト: aik1king/waggle-ui
 /**
  * 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("別人認定項目");
 }