summaryrefslogtreecommitdiffstats
path: root/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/actions/LaunchHobHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/actions/LaunchHobHandler.java')
-rw-r--r--plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/actions/LaunchHobHandler.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/actions/LaunchHobHandler.java b/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/actions/LaunchHobHandler.java
new file mode 100644
index 0000000..002075a
--- /dev/null
+++ b/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/actions/LaunchHobHandler.java
@@ -0,0 +1,50 @@
1/*******************************************************************************
2 * Copyright (c) 2011 Intel Corporation.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Intel - initial API and implementation
10 *******************************************************************************/
11package org.yocto.bc.ui.actions;
12
13import org.eclipse.core.commands.ExecutionEvent;
14import org.eclipse.core.commands.ExecutionException;
15import org.eclipse.core.commands.IHandlerListener;
16import org.eclipse.core.commands.IHandler;
17
18public class LaunchHobHandler implements IHandler {
19
20 public Object execute(ExecutionEvent event) throws ExecutionException {
21 LaunchHobAction a = new LaunchHobAction();
22 a.run(null);
23 return null;
24 }
25
26 public void addHandlerListener(IHandlerListener handlerListener) {
27 // TODO Auto-generated method stub
28
29 }
30
31 public void dispose() {
32 // TODO Auto-generated method stub
33
34 }
35
36 public boolean isEnabled() {
37 // TODO Auto-generated method stub
38 return true;
39 }
40
41 public boolean isHandled() {
42 // TODO Auto-generated method stub
43 return true;
44 }
45
46 public void removeHandlerListener(IHandlerListener handlerListener) {
47 // TODO Auto-generated method stub
48
49 }
50}