blob: c9a749717cf16211a545e132fe9c68b48d51b66d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.keys.model;
/**
* @since 3.4
*
*/
public class CommonModel extends ModelElement {
public static final String PROP_SELECTED_ELEMENT = "selectedElement"; //$NON-NLS-1$
private ModelElement selectedElement;
/**
* @param kc
*/
public CommonModel(KeyController kc) {
super(kc);
}
/**
* @return Returns the selectedContext.
*/
public ModelElement getSelectedElement() {
return selectedElement;
}
/**
* @param selectedContext
* The selectedContext to set.
*/
public void setSelectedElement(ModelElement selectedContext) {
ModelElement old = this.selectedElement;
this.selectedElement = selectedContext;
controller.firePropertyChange(this, PROP_SELECTED_ELEMENT, old,
selectedContext);
}
}