blob: 27cad2dfda679f3122d33047598474236e6ae492 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 Sybase, Inc. 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:
* Sybase, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.facesconfig.ui.pageflow.editpolicy;
import org.eclipse.gef.editpolicies.NonResizableEditPolicy;
import org.eclipse.jst.jsf.facesconfig.ui.pageflow.editpart.PageflowNodeEditPart;
import org.eclipse.jst.jsf.facesconfig.ui.pageflow.figure.PageflowNodeFigure;
/**
* Handles selection of Node. Primary selection is denoted by highlight and a
* focus rectangle. Normal selection is denoted by highlight only.
*
* @author xgzhang
*/
public class PageflowNodeSelectionEditPolicy extends NonResizableEditPolicy {
private PageflowNodeFigure getFigure() {
PageflowNodeEditPart part = (PageflowNodeEditPart) getHost();
return ((PageflowNodeFigure) part.getFigure());
}
/**
* @see org.eclipse.gef.editpolicies.SelectionHandlesEditPolicy#hideSelection()
*/
protected void hideSelection() {
super.hideSelection();
// getFigure().setSelected(false);
}
/**
* @see org.eclipse.gef.editpolicies.SelectionHandlesEditPolicy#showSelection()
*/
protected void showPrimarySelection() {
super.showPrimarySelection();
// getFigure().setSelected(true);
}
/**
* @see org.eclipse.gef.editpolicies.SelectionHandlesEditPolicy#showSelection()
*/
protected void showSelection() {
super.showSelection();
// getFigure().setSelected(true);
}
}