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 / RefreshHandler.java
index 740ed30a40b14e3139926059a8688dd4b77461fe..3f94dddfd39c8a52ee02008a95738554e1818423 100644 (file)
@@ -37,6 +37,7 @@ public class RefreshHandler implements IHandler {
        // Validation
        // ------------------------------------------------------------------------
 
+       @Override
        public boolean isEnabled() {
                
                // Check if we are closing down
@@ -61,6 +62,7 @@ public class RefreshHandler implements IHandler {
        }
 
        // Handled if we are in the ProjectView
+       @Override
        public boolean isHandled() {
                return true;
        }
@@ -69,6 +71,7 @@ public class RefreshHandler implements IHandler {
        // Execution
        // ------------------------------------------------------------------------
 
+       @Override
        public Object execute(ExecutionEvent event) throws ExecutionException {
 
                if (fProjectRoot != null) {
@@ -79,6 +82,7 @@ public class RefreshHandler implements IHandler {
                return null;
        }
 
+       @Override
        public void dispose() {
                // TODO Auto-generated method stub
        }
@@ -87,10 +91,12 @@ public class RefreshHandler 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.025562 seconds and 5 git commands to generate.