blob: 99b2393c33ea19db0526c1863814a3008bba22c7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.ui.branch.graph.parts;
import org.eclipse.gef.editpolicies.NonResizableEditPolicy;
import org.eclipse.osee.framework.ui.branch.graph.figure.BranchFigure;
public class BranchSelectionEditPolicy extends NonResizableEditPolicy {
protected BranchFigure getLabel() {
return (BranchFigure) getHostFigure();
}
/**
* @see org.eclipse.gef.editpolicies.NonResizableEditPolicy#hideFocus()
*/
protected void hideFocus() {
// getLabel().setFocus(false);
}
/**
* @see org.eclipse.gef.editpolicies.SelectionHandlesEditPolicy#hideSelection()
*/
protected void hideSelection() {
// getLabel().setSelected(false);
// getLabel().setFocus(false);
}
/**
* @see org.eclipse.gef.editpolicies.NonResizableEditPolicy#showFocus()
*/
protected void showFocus() {
// getLabel().setFocus(true);
}
/**
* @see org.eclipse.gef.editpolicies.SelectionHandlesEditPolicy#showSelection()
*/
protected void showPrimarySelection() {
// getLabel().setSelected(true);
// getLabel().setFocus(true);
}
/**
* @see org.eclipse.gef.editpolicies.SelectionHandlesEditPolicy#showSelection()
*/
protected void showSelection() {
// getLabel().setSelected(true);
// getLabel().setFocus(false);
}
}