blob: 7b5cd5ad68308196793557644d9a66ff3c3268ae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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
*
* Modified by:
* Claudia Knobloch, Forschungszentrum Juelich GmbH
*******************************************************************************/
package org.eclipse.ptp.rm.lml.core.events;
import org.eclipse.ptp.rm.lml.core.ILMLManager;
import org.eclipse.ptp.rm.lml.core.elements.ILguiItem;
/**
* Interface to manage the event that a LguiItem has been added.
* @author Claudia Knobloch
*/
public interface ILguiAddedEvent {
/**
* Getting the involved IlguiItem.
* @return the involved ILguiItem
*/
public ILguiItem getLgui();
/**
* Getting the involved LMLManager.
* @return the involved LMLManager
*/
public ILMLManager getLMLManager();
}