/** */ package no.resheim.elibrarium.library; import java.util.Date; import org.eclipse.emf.cdo.CDOObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Bookmark</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link no.resheim.elibrarium.library.Bookmark#getId <em>Id</em>}</li> * <li>{@link no.resheim.elibrarium.library.Bookmark#getLocation <em>Location</em>}</li> * <li>{@link no.resheim.elibrarium.library.Bookmark#getPage <em>Page</em>}</li> * <li>{@link no.resheim.elibrarium.library.Bookmark#getHref <em>Href</em>}</li> * <li>{@link no.resheim.elibrarium.library.Bookmark#getTimestamp <em>Timestamp</em>}</li> * <li>{@link no.resheim.elibrarium.library.Bookmark#getText <em>Text</em>}</li> * </ul> * </p> * * @see no.resheim.elibrarium.library.LibraryPackage#getBookmark() * @model * @extends CDOObject * @generated */ public interface Bookmark extends CDOObject { /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(String) * @see no.resheim.elibrarium.library.LibraryPackage#getBookmark_Id() * @model required="true" * @generated */ String getId(); /** * Sets the value of the '{@link no.resheim.elibrarium.library.Bookmark#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(String value); /** * Returns the value of the '<em><b>Location</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Location</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Location</em>' attribute. * @see #setLocation(String) * @see no.resheim.elibrarium.library.LibraryPackage#getBookmark_Location() * @model required="true" * @generated */ String getLocation(); /** * Sets the value of the '{@link no.resheim.elibrarium.library.Bookmark#getLocation <em>Location</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Location</em>' attribute. * @see #getLocation() * @generated */ void setLocation(String value); /** * Returns the value of the '<em><b>Page</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Page</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Page</em>' attribute. * @see #setPage(int) * @see no.resheim.elibrarium.library.LibraryPackage#getBookmark_Page() * @model * @generated */ int getPage(); /** * Sets the value of the '{@link no.resheim.elibrarium.library.Bookmark#getPage <em>Page</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Page</em>' attribute. * @see #getPage() * @generated */ void setPage(int value); /** * Returns the value of the '<em><b>Href</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Href</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Href</em>' attribute. * @see #setHref(String) * @see no.resheim.elibrarium.library.LibraryPackage#getBookmark_Href() * @model required="true" * @generated */ String getHref(); /** * Sets the value of the '{@link no.resheim.elibrarium.library.Bookmark#getHref <em>Href</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Href</em>' attribute. * @see #getHref() * @generated */ void setHref(String value); /** * Returns the value of the '<em><b>Timestamp</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Timestamp</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Timestamp</em>' attribute. * @see #setTimestamp(Date) * @see no.resheim.elibrarium.library.LibraryPackage#getBookmark_Timestamp() * @model required="true" * @generated */ Date getTimestamp(); /** * Sets the value of the '{@link no.resheim.elibrarium.library.Bookmark#getTimestamp <em>Timestamp</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Timestamp</em>' attribute. * @see #getTimestamp() * @generated */ void setTimestamp(Date value); /** * Returns the value of the '<em><b>Text</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Text</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Text</em>' attribute. * @see #setText(String) * @see no.resheim.elibrarium.library.LibraryPackage#getBookmark_Text() * @model required="true" * @generated */ String getText(); /** * Sets the value of the '{@link no.resheim.elibrarium.library.Bookmark#getText <em>Text</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Text</em>' attribute. * @see #getText() * @generated */ void setText(String value); } // Bookmark