Package org.springframework.ide.eclipse.metadata.actions

Source Code of org.springframework.ide.eclipse.metadata.actions.ShowRequestMappingsAction

/*******************************************************************************
*  Copyright (c) 2012 VMware, Inc.
*  All rights reserved. This program and the accompanying materials
*  are made available under the terms of the Eclipse Public License v1.0
*  which accompanies this distribution, and is available at
*  http://www.eclipse.org/legal/epl-v10.html
*
*  Contributors:
*      VMware, Inc. - initial API and implementation
*******************************************************************************/
package org.springframework.ide.eclipse.metadata.actions;

import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IActionDelegate;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.navigator.ICommonActionExtensionSite;
import org.springframework.ide.eclipse.beans.core.BeansCorePlugin;
import org.springframework.ide.eclipse.beans.core.model.IBeansConfig;
import org.springframework.ide.eclipse.beans.core.model.IBeansConfigSet;
import org.springframework.ide.eclipse.beans.core.model.IBeansModelElement;
import org.springframework.ide.eclipse.beans.core.model.IBeansProject;
import org.springframework.ide.eclipse.metadata.MetadataPlugin;
import org.springframework.ide.eclipse.metadata.MetadataUIImages;
import org.springframework.ide.eclipse.metadata.ui.RequestMappingBeanMetadataReference;
import org.springframework.ide.eclipse.metadata.ui.RequestMappingView;
import org.springframework.ide.eclipse.ui.navigator.actions.AbstractNavigatorAction;
import org.springsource.ide.eclipse.commons.core.StatusHandler;


/**
* @author Leo Dos Santos
* @author Christian Dupuis
*/
public class ShowRequestMappingsAction extends AbstractNavigatorAction
    implements IActionDelegate {

  private IBeansModelElement element;

  public ShowRequestMappingsAction() {
    this(null);
  }

  public ShowRequestMappingsAction(ICommonActionExtensionSite actionSite) {
    super(actionSite);
    setText(Messages.ShowRequestMappingsAction_TITLE);
    setImageDescriptor(MetadataUIImages.DESC_OBJS_REQUEST_MAPPING);
  }

  @Override
  protected boolean isEnabled(IStructuredSelection selection) {
    Object treeElement = selection.getFirstElement();
    IBeansModelElement modelElement = null;
    if (treeElement instanceof IBeansProject) {
      modelElement = (IBeansProject) treeElement;
    } else if (treeElement instanceof IBeansConfig) {
      modelElement = (IBeansConfig) treeElement;
    } else if (treeElement instanceof IBeansConfigSet) {
      modelElement = (IBeansConfigSet) treeElement;
    } else if (treeElement instanceof IProject) {
      modelElement = BeansCorePlugin.getModel().getProject(
          (IProject) treeElement);
    } else if (treeElement instanceof IFile) {
      modelElement = BeansCorePlugin.getModel().getConfig(
          (IFile) treeElement);
    } else if (treeElement instanceof RequestMappingBeanMetadataReference) {
      modelElement = ((RequestMappingBeanMetadataReference) treeElement)
          .getBeansProject();
    }
    if (modelElement != null) {
      element = modelElement;
      return true;
    }
    return false;
  }

  @Override
  public void run() {
    displayView();
  }

  private void displayView() {
    try {
      RequestMappingView view = (RequestMappingView) PlatformUI
          .getWorkbench().getActiveWorkbenchWindow().getActivePage()
          .showView(RequestMappingView.ID_VIEW);
      view.setInput(element);
    } catch (PartInitException e) {
      StatusHandler.log(new Status(IStatus.ERROR,
          MetadataPlugin.PLUGIN_ID,
          Messages.ShowRequestMappingsAction_ERROR_OPENING_VIEW
              + RequestMappingView.ID_VIEW, e));
    }
  }

  public void run(IAction action) {
    run();
  }

  public void selectionChanged(IAction action, ISelection selection) {
    if (selection instanceof IStructuredSelection) {
      isEnabled((IStructuredSelection) selection);
    }
  }

}
TOP

Related Classes of org.springframework.ide.eclipse.metadata.actions.ShowRequestMappingsAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.