blob: e5d4215ce50b83736d239f1035e7738695b3b219 [file] [log] [blame]
/**
* Copyright (c) 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.e4.ui.model.application.ui.basic;
import java.util.List;
import org.eclipse.e4.ui.model.application.ui.MGenericTrimContainer;
import org.eclipse.e4.ui.model.application.ui.MUIElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Trim Bar</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.e4.ui.model.application.ui.basic.MTrimBar#getPendingCleanup <em>Pending Cleanup</em>}</li>
* </ul>
* </p>
*
* @model
* @generated
*/
public interface MTrimBar extends MGenericTrimContainer<MTrimElement>, MUIElement {
/**
* Returns the value of the '<em><b>Pending Cleanup</b></em>' reference list.
* The list contents are of type {@link org.eclipse.e4.ui.model.application.ui.basic.MTrimElement}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Pending Cleanup</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Pending Cleanup</em>' reference list.
* @model transient="true"
* @generated
*/
List<MTrimElement> getPendingCleanup();
} // MTrimBar