本文整理汇总了Java中com.apple.eawt.AppEvent.SystemSleepEvent类的典型用法代码示例。如果您正苦于以下问题:Java SystemSleepEvent类的具体用法?Java SystemSleepEvent怎么用?Java SystemSleepEvent使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SystemSleepEvent类属于com.apple.eawt.AppEvent包,在下文中一共展示了SystemSleepEvent类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: systemAboutToSleep
import com.apple.eawt.AppEvent.SystemSleepEvent; //导入依赖的package包/类
@Override
public void systemAboutToSleep(final SystemSleepEvent e) {
eventService.publish(new AppSystemSleepEvent(true));
}
示例2: systemAwoke
import com.apple.eawt.AppEvent.SystemSleepEvent; //导入依赖的package包/类
public void systemAwoke(final SystemSleepEvent e) {
eventService.publish(new AppSystemSleepEvent(false));
}
示例3: systemAweoke
import com.apple.eawt.AppEvent.SystemSleepEvent; //导入依赖的package包/类
public void systemAweoke(final SystemSleepEvent e) {
// HACK: To make com.yuvimasory:orange-extensions:1.3 happy.
// See: https://github.com/ymasory/OrangeExtensions/pull/10
}
示例4: systemAboutToSleep
import com.apple.eawt.AppEvent.SystemSleepEvent; //导入依赖的package包/类
/**
* Called when the system is about to sleep.
* Note: This message may not be delivered prior to the actual system sleep, and may be processed after the corresponding wake has occurred.
* @param e the system sleep event
*/
public void systemAboutToSleep(final SystemSleepEvent e);
示例5: systemAwoke
import com.apple.eawt.AppEvent.SystemSleepEvent; //导入依赖的package包/类
/**
* Called after the system has awoke from sleeping.
* @param e the system sleep event
*/
public void systemAwoke(final SystemSleepEvent e);