/* * Copyright 2010 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.guvnor.tools.actions; import java.util.Iterator; import org.eclipse.core.resources.IFile; import org.eclipse.jface.action.IAction; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.ui.IObjectActionDelegate; import org.eclipse.ui.IWorkbenchPart; import org.guvnor.tools.utils.ActionUtils; import org.guvnor.tools.utils.GuvnorMetadataUtils; import org.guvnor.tools.utils.PlatformUtils; /** * Commits changes to Guvnor resources. */ public class CommitAction implements IObjectActionDelegate { private IStructuredSelection selectedItems; public CommitAction() { super(); } /* * (non-Javadoc) * @see org.eclipse.ui.IObjectActionDelegate#setActivePart(org.eclipse.jface.action.IAction, org.eclipse.ui.IWorkbenchPart) */ public void setActivePart(IAction action, IWorkbenchPart targetPart) { } /* * (non-Javadoc) * @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction) */ @SuppressWarnings("unchecked") public void run(IAction action) { assert(selectedItems != null); for (Iterator it = selectedItems.iterator(); it.hasNext();) { Object oneSelection = it.next(); if (oneSelection instanceof IFile) { GuvnorMetadataUtils.commitFileChanges((IFile)oneSelection); } } PlatformUtils.updateDecoration(); } /* * (non-Javadoc) * @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction, org.eclipse.jface.viewers.ISelection) */ public void selectionChanged(IAction action, ISelection selection) { boolean validResourceSet = ActionUtils.checkResourceSet(selection, true) && ActionUtils.areFilesDirty(selection); if (validResourceSet) { action.setEnabled(true); selectedItems = (IStructuredSelection)selection; } else { action.setEnabled(false); selectedItems = null; } } }