我想知道Page.getCurrent()
在 vaadin 框架中需要什么导入,谷歌搜索引导我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);
}
}
提前致谢