Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor.di/custom-src/org/eclipse/papyrus/infra/core/sasheditor/di/contentprovider/commands/CloseAllDiagramsCommand.java')
-rw-r--r--plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor.di/custom-src/org/eclipse/papyrus/infra/core/sasheditor/di/contentprovider/commands/CloseAllDiagramsCommand.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor.di/custom-src/org/eclipse/papyrus/infra/core/sasheditor/di/contentprovider/commands/CloseAllDiagramsCommand.java b/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor.di/custom-src/org/eclipse/papyrus/infra/core/sasheditor/di/contentprovider/commands/CloseAllDiagramsCommand.java
index c060de92be1..deab4ff85f4 100644
--- a/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor.di/custom-src/org/eclipse/papyrus/infra/core/sasheditor/di/contentprovider/commands/CloseAllDiagramsCommand.java
+++ b/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor.di/custom-src/org/eclipse/papyrus/infra/core/sasheditor/di/contentprovider/commands/CloseAllDiagramsCommand.java
@@ -22,7 +22,7 @@ public class CloseAllDiagramsCommand extends AbstractHandler {
*/
@Override
public void setEnabled(Object evaluationContext) {
- // System.out.println("call to CloseAllDiagramsCommand.setEnable(" + evaluationContext + ")");
+ // System.out.println("call to CloseAllDiagramsCommand.setEnable(" + evaluationContext + ")");
}
/**
@@ -50,11 +50,11 @@ public class CloseAllDiagramsCommand extends AbstractHandler {
* @param event
* @return
* @throws NullPointerException
- * if the PageMngr can't be found.
+ * if the PageMngr can't be found.
*/
private IPageManager getPageManager(ExecutionEvent event) {
IEditorPart part = HandlerUtil.getActiveEditor(event);
- IPageManager pageManager = (IPageManager)part.getAdapter(IPageManager.class);
+ IPageManager pageManager = (IPageManager) part.getAdapter(IPageManager.class);
return pageManager;
}
@@ -66,14 +66,14 @@ public class CloseAllDiagramsCommand extends AbstractHandler {
*/
public void execute(final IPageManager pageManager) throws ExecutionException {
boolean atLeastOneOpenPage = false;
- for(Object pageIdentifier : pageManager.allPages()) {
- if(pageManager.isOpen(pageIdentifier)) {
+ for (Object pageIdentifier : pageManager.allPages()) {
+ if (pageManager.isOpen(pageIdentifier)) {
atLeastOneOpenPage = true;
break;
}
}
- if(!atLeastOneOpenPage) {
+ if (!atLeastOneOpenPage) {
return;
}

Back to the top