View Javadoc

1   ////////////////////////////////////////////////////////////////////////////////
2   //CabaWeb
3   //Copyright (C) 2004  Thomas Vogt <Thomas.Vogt@TVC-Software.com>
4   //
5   //This library is free software; you can redistribute it and/or
6   //modify it under the terms of the GNU Lesser General Public
7   //License as published by the Free Software Foundation; either
8   //version 2.1 of the License, or (at your option) any later version.
9   //
10  //This library is distributed in the hope that it will be useful,
11  //but WITHOUT ANY WARRANTY; without even the implied warranty of
12  //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  //Lesser General Public License for more details.
14  //
15  //You should have received a copy of the GNU Lesser General Public
16  //License along with this library; if not, write to the Free Software
17  //Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  ////////////////////////////////////////////////////////////////////////////////
19  
20  package org.fhw.cabaweb.data.dataobjects;
21  
22  /***
23   * Klasse die eine Beziehung Preis - Absatz kapselt
24   *
25   * @author	<a href="mailto:thomas.vogt@tvc-software.com">Thomas Vogt</a>
26   * @version	Version 1.0 05.03.2004
27   */
28  public class PreisAbsatz
29  {
30      /***
31       * Die Membervariable für den dem Absatz zugeordneten Preis
32       */
33      private double preis;
34      /***
35       * Die Membervariable für den Absatz an Produkten
36       */
37      private double absatz;
38  
39      /***
40       * Standardkonstruktor, setzt Elemente auf 0.00
41       */
42      public PreisAbsatz()
43      {
44          this.preis = 0.00;
45          this.absatz = 0.00;
46      }
47  
48      /***
49       * &Uuml;berschriebener Konstruktor, setzt Elemente auf entsprechend &uuml;bergebene Werte
50       *
51       * @param	preis	Der dem Absatz zugeordnete Preis
52       * @param	absatz	Der Absatz an Produkten
53       */
54      public PreisAbsatz(double preis, double absatz)
55      {
56          this.preis = preis;
57          this.absatz = absatz;
58      }
59  
60      /***
61       * Funktion um den Preis zu setzen
62       *
63       * @param	preis	Der dem Absatz zugeordnete Preis
64       */
65      public void setPreis(double preis)
66      {
67          this.preis = preis;
68      }
69  
70      /***
71       * Funktion um den Preis zur&uuml;ckzugeben
72       *
73       * @return	Der dem Absatz zugeordnete Preis
74       */
75      public double getPreis()
76      {
77          return preis;
78      }
79  
80      /***
81       * Funktion um den Absatz zu setzen
82       *
83       * @param	absatz	Der Absatz an Produkten
84       */
85      public void setAbsatz(double absatz)
86      {
87          this.absatz = absatz;
88      }
89  
90      /***
91       * Funktion um den Absatz zur&uuml;ckzugeben
92       *
93       * @return	Der Absatz an Produkten
94       */
95      public double getAbsatz()
96      {
97          return absatz;
98      }
99  
100     /***
101      * Gibt den Inhalt der Klassenparameter als String zur&uuml;ck
102      *
103      * @return String mit dem Inhalt der Klassenparameter
104      */
105     public String toString()
106     {
107         return preis + " | " + absatz;
108 
109     }
110 }