| /** |
| * <copyright> |
| * </copyright> |
| * |
| * $Id$ |
| */ |
| package lobj; |
| |
| import java.util.Date; |
| |
| /** |
| * <!-- begin-user-doc --> A representation of the model object '<em><b>Folder Meta</b></em>'. <!-- |
| * end-user-doc --> |
| * |
| * <p> |
| * The following features are supported: |
| * <ul> |
| * <li>{@link lobj.FolderMeta#getTitle <em>Title</em>}</li> |
| * <li>{@link lobj.FolderMeta#getDescription <em>Description</em>}</li> |
| * <li>{@link lobj.FolderMeta#getCreationDate <em>Creation Date</em>}</li> |
| * </ul> |
| * </p> |
| * |
| * @see lobj.LobjPackage#getFolderMeta() |
| * @model extendedMetaData="kind='elementOnly'" |
| * @generated |
| */ |
| public interface FolderMeta extends LearningObject { |
| /** |
| * Returns the value of the '<em><b>Title</b></em>' attribute. <!-- begin-user-doc --> |
| * <p> |
| * If the meaning of the '<em>Title</em>' attribute isn't clear, there really should be more of a |
| * description here... |
| * </p> |
| * <!-- end-user-doc --> |
| * |
| * @return the value of the '<em>Title</em>' attribute. |
| * @see #setTitle(String) |
| * @see lobj.LobjPackage#getFolderMeta_Title() |
| * @model unique="false" extendedMetaData="kind='element'" |
| * @generated |
| */ |
| String getTitle(); |
| |
| /** |
| * Sets the value of the '{@link lobj.FolderMeta#getTitle <em>Title</em>}' attribute. <!-- |
| * begin-user-doc --> <!-- end-user-doc --> |
| * |
| * @param value |
| * the new value of the '<em>Title</em>' attribute. |
| * @see #getTitle() |
| * @generated |
| */ |
| void setTitle(String value); |
| |
| /** |
| * Returns the value of the '<em><b>Description</b></em>' attribute. <!-- begin-user-doc --> |
| * <p> |
| * If the meaning of the '<em>Description</em>' attribute isn't clear, there really should be more |
| * of a description here... |
| * </p> |
| * <!-- end-user-doc --> |
| * |
| * @return the value of the '<em>Description</em>' attribute. |
| * @see #setDescription(String) |
| * @see lobj.LobjPackage#getFolderMeta_Description() |
| * @model unique="false" extendedMetaData="kind='element'" |
| * @generated |
| */ |
| String getDescription(); |
| |
| /** |
| * Sets the value of the '{@link lobj.FolderMeta#getDescription <em>Description</em>}' attribute. |
| * <!-- begin-user-doc --> <!-- end-user-doc --> |
| * |
| * @param value |
| * the new value of the '<em>Description</em>' attribute. |
| * @see #getDescription() |
| * @generated |
| */ |
| void setDescription(String value); |
| |
| /** |
| * Returns the value of the '<em><b>Creation Date</b></em>' attribute. <!-- begin-user-doc --> |
| * <p> |
| * If the meaning of the '<em>Creation Date</em>' attribute isn't clear, there really should be |
| * more of a description here... |
| * </p> |
| * <!-- end-user-doc --> |
| * |
| * @return the value of the '<em>Creation Date</em>' attribute. |
| * @see #setCreationDate(Date) |
| * @see lobj.LobjPackage#getFolderMeta_CreationDate() |
| * @model unique="false" extendedMetaData="kind='element'" |
| * @generated |
| */ |
| Date getCreationDate(); |
| |
| /** |
| * Sets the value of the '{@link lobj.FolderMeta#getCreationDate <em>Creation Date</em>}' |
| * attribute. <!-- begin-user-doc --> <!-- end-user-doc --> |
| * |
| * @param value |
| * the new value of the '<em>Creation Date</em>' attribute. |
| * @see #getCreationDate() |
| * @generated |
| */ |
| void setCreationDate(Date value); |
| |
| } // FolderMeta |