blob: 6848c1db6a8a1400d2b8a849bff99f99f1704c63 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 RCP Vision (http://www.rcp-vision.com) 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
*******************************************************************************/
/**
*/
package library;
import java.util.Date;
import org.eclipse.emf.cdo.CDOObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Author</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link library.Author#getName <em>Name</em>}</li>
* <li>{@link library.Author#getSurname <em>Surname</em>}</li>
* <li>{@link library.Author#getBirthdate <em>Birthdate</em>}</li>
* </ul>
* </p>
*
* @see library.LibraryPackage#getAuthor()
* @model
* @extends CDOObject
* @generated
*/
public interface Author extends CDOObject {
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see library.LibraryPackage#getAuthor_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link library.Author#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Surname</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Surname</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Surname</em>' attribute.
* @see #setSurname(String)
* @see library.LibraryPackage#getAuthor_Surname()
* @model
* @generated
*/
String getSurname();
/**
* Sets the value of the '{@link library.Author#getSurname <em>Surname</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Surname</em>' attribute.
* @see #getSurname()
* @generated
*/
void setSurname(String value);
/**
* Returns the value of the '<em><b>Birthdate</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Birthdate</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Birthdate</em>' attribute.
* @see #setBirthdate(Date)
* @see library.LibraryPackage#getAuthor_Birthdate()
* @model
* @generated
*/
Date getBirthdate();
/**
* Sets the value of the '{@link library.Author#getBirthdate <em>Birthdate</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Birthdate</em>' attribute.
* @see #getBirthdate()
* @generated
*/
void setBirthdate(Date value);
} // Author