blob: 229aa99305a71e69d9ffc84b5a77d173cad7aa20 [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*
*/
package org.eclipse.osbp.ecview.extension.editparts;
import org.eclipse.osbp.ecview.core.common.editpart.IElementEditpart;
import org.eclipse.osbp.ecview.core.common.editpart.IViewEditpart;
/**
* Is used to set the focus to a field.
*/
public interface ISuspectLayoutingInfoEditpart extends IElementEditpart {
/**
* Returns the view edit part of this editpart.<br>
* May be <code>null</code> as far as this element and no of its parents are
* attached to a view.
*
* @return editpart The view editpart
*/
IViewEditpart getView();
/**
* Requests disposal of the current editpart. This method will forward the
* request to the parent if available and the parent will handle the steps
* required to dispose the editpart properly.
*/
void requestDispose();
/**
* Returns the parent that contains this editpart.
*
* @return the parent
*/
ILayoutingInfoEditpart getParent();
}