Merged SampleERCP into master
[Mograsim.git] / SampleERCP / src / sampleercp / handlers / SaveHandler.java
index de086e0..c38f133 100644 (file)
@@ -4,18 +4,22 @@ import org.eclipse.e4.core.di.annotations.CanExecute;
 import org.eclipse.e4.core.di.annotations.Execute;
 import org.eclipse.e4.ui.workbench.modeling.EPartService;
 
-public class SaveHandler {
+public class SaveHandler
+{
 
        @CanExecute
-       public boolean canExecute(EPartService partService) {
-               if (partService != null) {
+       public boolean canExecute(EPartService partService)
+       {
+               if (partService != null)
+               {
                        return !partService.getDirtyParts().isEmpty();
                }
                return false;
        }
 
        @Execute
-       public void execute(EPartService partService) {
+       public void execute(EPartService partService)
+       {
                partService.saveAll(false);
        }
 }
\ No newline at end of file