blob: d65c0696f75bd3c7914303c321dab3c2e6c44e3b [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2004, 2010 Technical University Berlin, Germany.
*
* 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
* $Id$
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Technical University Berlin - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.example.observer.library;
import java.util.LinkedList;
/**
* A title listed in the catalogue.
*/
public class Book {
private String name;
private String author;
private String isbn;
private LinkedList<BookCopy> copies = new LinkedList<BookCopy>();
public Book (String name, String author, String isbn) {
this.name = name;
this.author = name;
this.isbn = isbn;
}
public String getName () { return name ; }
public String getAuthor () { return author; }
public String getISBN () { return isbn; }
/**
* When a new copy of this book is acquired, use this method to register.
* @param bc
* @return number of registered copies after the operation.
*/
public int registerCopy (BookCopy bc) {
copies.add(bc);
return copies.size();
}
}