blob: 4a02abc901f80806a2cb06e772880f3a35690116 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2007 Oracle Corporation and others.
* 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:
* Oracle Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.pagedesigner.actions.single;
import org.eclipse.gef.EditPart;
import org.eclipse.osgi.util.NLS;
import org.w3c.dom.Node;
/**
* Given a target node/edit part change selection to its parent
*
* @author cbateman
*
*/
public class SelectParentAction extends SelectNodeAction {
private final EditPart _editPart;
/**
* @param node
* @param editPart
* @return an action that will change focus selection to the parent
* part of node/editPart or a disabled one if there is no parent
*/
public static SelectParentAction create(Node node, EditPart editPart)
{
Node parent = node.getParentNode();
if (parent != null)
{
final String text = NLS.bind(Messages.SelectParentAction_MenuTextParent, parent.getNodeName());
return new SelectParentAction(text, node, editPart);
}
SelectParentAction action = new SelectParentAction(Messages.SelectParentAction_MenuTextNoParent, node, editPart);
action.setEnabled(false);
return action;
}
private SelectParentAction(String text, Node node, EditPart editPart)
{
super(text, node);
_editPart = editPart;
}
/* (non-Javadoc)
* @see org.eclipse.jst.pagedesigner.actions.single.SelectEditPartAction#getNewSelection()
*/
protected EditPart getNewSelection()
{
return _editPart.getParent();
}
}