/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.papyrus.views.properties.ui; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>UI Component</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.papyrus.views.properties.ui.UIComponent#getAttributes <em>Attributes</em>}</li> * </ul> * </p> * * @see org.eclipse.papyrus.views.properties.ui.UiPackage#getUIComponent() * @model abstract="true" * @generated */ public interface UIComponent extends Element { /** * Returns the value of the '<em><b>Attributes</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.papyrus.views.properties.ui.WidgetAttribute}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Attributes</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Attributes</em>' containment reference list. * @see org.eclipse.papyrus.views.properties.ui.UiPackage#getUIComponent_Attributes() * @model containment="true" * @generated */ EList<WidgetAttribute> getAttributes(); } // UIComponent