2010-10-26 Francois Chouinard <fchouinard@gmail.com> Contribution for Bug309042
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / project / handlers / CloseProjectHandler.java
index c00e60d9c95d51cfe95765a9e6fea5b5390517bf..827a15dc9461ff08f076df4750d20b8749d56ec2 100644 (file)
@@ -37,6 +37,7 @@ public class CloseProjectHandler implements IHandler {
        // Validation
        // ------------------------------------------------------------------------
 
+       @Override
        public boolean isEnabled() {
                
                // Check if we are closing down
@@ -59,6 +60,7 @@ public class CloseProjectHandler implements IHandler {
        }
 
        // Handled if we are in the ProjectView
+       @Override
        public boolean isHandled() {
                return true;
        }
@@ -67,6 +69,7 @@ public class CloseProjectHandler implements IHandler {
        // Execution
        // ------------------------------------------------------------------------
 
+       @Override
        public Object execute(ExecutionEvent event) throws ExecutionException {
 
                if (fProject != null) {
@@ -76,6 +79,7 @@ public class CloseProjectHandler implements IHandler {
                return null;
        }
 
+       @Override
        public void dispose() {
                // TODO Auto-generated method stub
        }
@@ -84,10 +88,12 @@ public class CloseProjectHandler implements IHandler {
        // IHandlerListener
        // ------------------------------------------------------------------------
 
+       @Override
        public void addHandlerListener(IHandlerListener handlerListener) {
                // TODO Auto-generated method stub
        }
 
+       @Override
        public void removeHandlerListener(IHandlerListener handlerListener) {
                // TODO Auto-generated method stub
        }
This page took 0.024059 seconds and 5 git commands to generate.