View Javadoc

1   /*
2    * @(#) BuyerInterface.java Dec 8, 2003
3    * 
4    * Copyright (c) 2003 Delft University of Technology Jaffalaan 5, 2628 BX Delft,
5    * the Netherlands All rights reserved.
6    * 
7    * This software is proprietary information of Delft University of Technology
8    * The code is published under the General Public License
9    */
10  package nl.tudelft.simulation.dsol.tutorial.section42;
11  
12  /***
13   * A BuyerInterface <br>
14   * (c) copyright 2003 <a href="http://www.simulation.tudelft.nl">Delft
15   * University of Technology </a>, the Netherlands. <br>
16   * See for project information <a
17   * href="http://www.simulation.tudelft.nl">www.simulation.tudelft.nl </a> <br>
18   * License of use: <a href="http://www.gnu.org/copyleft/gpl.html">General Public
19   * License (GPL) </a>, no warranty <br>
20   * 
21   * @version 1.0 Dec 8, 2003 <br>
22   * @author <a href="http://www.simulation.tudelft.nl/people/jacobs.html">Peter
23   *         Jacobs </a>
24   */
25  public interface BuyerInterface
26  {
27  	/***
28  	 * receive the ordered Product
29  	 * 
30  	 * @param amount the amount to receive
31  	 */
32  	void receiveProduct(final long amount);
33  }