当前位置: 首页>>代码示例>>Java>>正文


Java ApplicationEvent.setHandled方法代码示例

本文整理汇总了Java中org.simplericity.macify.eawt.ApplicationEvent.setHandled方法的典型用法代码示例。如果您正苦于以下问题:Java ApplicationEvent.setHandled方法的具体用法?Java ApplicationEvent.setHandled怎么用?Java ApplicationEvent.setHandled使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.simplericity.macify.eawt.ApplicationEvent的用法示例。


在下文中一共展示了ApplicationEvent.setHandled方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: handleOpenFile

import org.simplericity.macify.eawt.ApplicationEvent; //导入方法依赖的package包/类
public void handleOpenFile(ApplicationEvent ev)
{
	String f = ev.getFilename();
	if (f.endsWith(".xml"))
	{
		open(ev.getFilename());
		ev.setHandled(true);
	}
}
 
开发者ID:JackJiang2011,项目名称:DroidUIBuilder,代码行数:10,代码来源:Launch.java

示例2: handleOpenFile

import org.simplericity.macify.eawt.ApplicationEvent; //导入方法依赖的package包/类
@Override
public void handleOpenFile(ApplicationEvent e) {
	try {
		if (e.getFilename() != null) {
			fileManager.openDataflow(null, new File(e.getFilename()));
			e.setHandled(true);
		}
	} catch (OpenException | IllegalStateException ex) {
		logger.warn("Could not open file " + e.getFilename(), ex);
	}
}
 
开发者ID:apache,项目名称:incubator-taverna-workbench,代码行数:12,代码来源:WorkbenchImpl.java

示例3: handleAbout

import org.simplericity.macify.eawt.ApplicationEvent; //导入方法依赖的package包/类
@Override
@Deprecated
public void handleAbout(ApplicationEvent event) {
    coreController.displayView(ViewEnum.TRANSACTIONS_VIEW);
    event.setHandled(true);
}
 
开发者ID:bither,项目名称:bither-desktop-java,代码行数:7,代码来源:MainFrame.java

示例4: handleAbout

import org.simplericity.macify.eawt.ApplicationEvent; //导入方法依赖的package包/类
public void handleAbout(ApplicationEvent ev)
{
	showAboutFrame();
	ev.setHandled(true);
}
 
开发者ID:JackJiang2011,项目名称:DroidUIBuilder,代码行数:6,代码来源:Launch.java

示例5: handleAbout

import org.simplericity.macify.eawt.ApplicationEvent; //导入方法依赖的package包/类
@Override
public void handleAbout(ApplicationEvent e) {
	showAboutDialog();
	e.setHandled(true);
}
 
开发者ID:apache,项目名称:incubator-taverna-workbench,代码行数:6,代码来源:WorkbenchImpl.java

示例6: handleQuit

import org.simplericity.macify.eawt.ApplicationEvent; //导入方法依赖的package包/类
@Override
public void handleQuit(ApplicationEvent e) {
	e.setHandled(true);
	exit();
}
 
开发者ID:apache,项目名称:incubator-taverna-workbench,代码行数:6,代码来源:WorkbenchImpl.java

示例7: handlePreferences

import org.simplericity.macify.eawt.ApplicationEvent; //导入方法依赖的package包/类
@Override
public void handlePreferences(ApplicationEvent e) {
	e.setHandled(true);
	t2ConfigurationFrame.showFrame();
}
 
开发者ID:apache,项目名称:incubator-taverna-workbench,代码行数:6,代码来源:WorkbenchImpl.java

示例8: handleAbout

import org.simplericity.macify.eawt.ApplicationEvent; //导入方法依赖的package包/类
@Override
public void handleAbout(final ApplicationEvent event) {
    final AboutDialog dialog = new AboutDialog(_windowContext);
    dialog.setVisible(true);
    event.setHandled(true);
}
 
开发者ID:datacleaner,项目名称:DataCleaner,代码行数:7,代码来源:MacOSManager.java

示例9: handleAbout

import org.simplericity.macify.eawt.ApplicationEvent; //导入方法依赖的package包/类
@Override
@Deprecated
public void handleAbout(ApplicationEvent event) {
    controller.displayView(View.HELP_ABOUT_VIEW);
    event.setHandled(true);
}
 
开发者ID:coinspark,项目名称:sparkbit,代码行数:7,代码来源:MultiBitFrame.java


注:本文中的org.simplericity.macify.eawt.ApplicationEvent.setHandled方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。