blob: d3aaffe471362332d43e7a266f0c193f33ed3b49 [file] [log] [blame]
/**
* Copyright (c) 2009 IBM Corporation.
* 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 Implementation
*
* Modified by:
* Claudia Knobloch, Forschungszentrum Juelich GmbH
*/
package org.eclipse.ptp.rm.lml.ui;
import org.eclipse.jface.viewers.ISelection;
public interface ILguiSelectionListener {
/**
* Notify the listener that a resource manager has been selected as the
* default
*
* @param rm
* selected resource manager
* @since 5.0
*/
public void setDefault(Object rm);
/**
* Notify the listener that the selection has changed in the RM view
*
* @param selection
* new selection
*/
public void selectionChanged(ISelection selection);
}