Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GWTアプリケーションを作成したい。ユーザーがシステムにログインするたびに、PopUpPanelにいくつかの情報が表示され、しばらくすると自動的に無効になりますGWT。
GWT
次のようなものを試すことができます:
Timer t = new Timer() { @Override public void run() { popUpPanel.hide(); } }; popUpPanel.show(); t.schedule(5000);
5000ポップアップを表示する期間はどこですか。
5000