/** * UbiCompForAll */ package org.ubicompforall.descriptor; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Building Block Desc</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.ubicompforall.descriptor.BuildingBlockDesc#getProperties <em>Properties</em>}</li> * <li>{@link org.ubicompforall.descriptor.BuildingBlockDesc#getIconUrl <em>Icon Url</em>}</li> * </ul> * </p> * * @see org.ubicompforall.descriptor.UbiCompDescriptorPackage#getBuildingBlockDesc() * @model abstract="true" * @generated */ public interface BuildingBlockDesc extends Classifier { /** * Returns the value of the '<em><b>Properties</b></em>' containment reference list. * The list contents are of type {@link org.ubicompforall.descriptor.Property}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Properties</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>Properties</em>' containment reference list. * @see org.ubicompforall.descriptor.UbiCompDescriptorPackage#getBuildingBlockDesc_Properties() * @model containment="true" * @generated */ EList<Property> getProperties(); /** * Returns the value of the '<em><b>Icon Url</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Icon Url</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Icon Url</em>' attribute. * @see #setIconUrl(String) * @see org.ubicompforall.descriptor.UbiCompDescriptorPackage#getBuildingBlockDesc_IconUrl() * @model * @generated */ String getIconUrl(); /** * Sets the value of the '{@link org.ubicompforall.descriptor.BuildingBlockDesc#getIconUrl <em>Icon Url</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Icon Url</em>' attribute. * @see #getIconUrl() * @generated */ void setIconUrl(String value); } // BuildingBlockDesc