Page.getCurrent()
vaadin フレームワークで必要なインポートを知りたいのですが、Google 検索でcom.vaadin.server
パッケージが表示されますが、Eclipse で解決できないことが通知import com.vaadin.server
され、試しcom.vaadin.server.*
てみimport com.vaadin.server.Page;
ましたが解決できませんでした。私はvaadin 6.8を使用しています
これが私が実行しようとしているクラスです
package com.example.juju;
import com.vaadin.Application;
import com.vaadin.ui.Label;
import com.vaadin.ui.Window;
import com.vaadin.ui.Window.Notification;
public class JujuApplication extends Application
{
@Override
public void init() {
Window mainWindow = new Window("Myproject");
// Notification with default settings for a warning
Notification notif = new Notification("Warning",
"<br/>Area of reindeer husbandry",
Notification.TYPE_WARNING_MESSAGE);
// Customize it
notif.setDelayMsec(20000);
notif.setPosition(Notification.POSITION_BOTTOM_RIGHT);
notif.setStyleName("mystyle");
// Show it in the page
notif.show(Page.getCurrent());
setMainWindow(mainWindow);
}
}
前もって感謝します