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 Kapazit&auml;tsauslastung - Verwaltungskosten kapselt
24   *
25   * @author	<a href="mailto:thomas.vogt@tvc-software.com">Thomas Vogt</a>
26   * @version	Version 1.0 12.03.2004
27   */
28  public class Verwaltungskosten
29  {
30      /***
31       * Die Membervariable für die Kapazit&auml;tsauslastung, bis zu der die Kosten gelten
32       */
33      private double kapazitaetsauslastung;
34      /***
35       * Die Membervariable für den Absatz an Produkten
36       */
37      private double kosten;
38  
39      /***
40       * Standardkonstruktor, setzt Elemente auf 0.00
41       */
42      public Verwaltungskosten()
43      {
44          this.kapazitaetsauslastung = 0.00;
45          this.kosten = 0.00;
46      }
47  
48      /***
49       * &Uuml;berschriebener Konstruktor, setzt Elemente auf entsprechend &uuml;bergebene Werte
50       *
51       * @param	kapazitaetsauslastung	Die Kapazit&auml;tsauslastung, bis zu der die Kosten gelten
52       * @param	kosten	Der Absatz an Produkten
53       */
54      public Verwaltungskosten(double kapazitaetsauslastung, double kosten)
55      {
56          this.kapazitaetsauslastung = kapazitaetsauslastung;
57          this.kosten = kosten;
58      }
59  
60      /***
61       * Funktion um die Kapazit&auml;tsauslastung, bis zu der die Kosten gelten zu setzen
62       *
63       * @param	kapazitaetsauslastung	Die Kapazit&auml;tsauslastung, bis zu der die Kosten gelten
64       */
65      public void setKapazitaetsauslastung(double kapazitaetsauslastung)
66      {
67          this.kapazitaetsauslastung = kapazitaetsauslastung;
68      }
69  
70      /***
71       * Funktion um die Kapazit&auml;tsauslastung, bis zu der die Kosten gelten zur&uuml;ckzugeben
72       *
73       * @return	Die Kapazit&auml;tsauslastung, bis zu der die Kosten gelten
74       */
75      public double getKapazitaetsauslastung()
76      {
77          return kapazitaetsauslastung;
78      }
79  
80      /***
81       * Funktion um die Kosten zu setzen
82       *
83       * @param	kosten	Die Kosten
84       */
85      public void setKosten(double kosten)
86      {
87          this.kosten = kosten;
88      }
89  
90      /***
91       * Funktion um die Kosten zur&uuml;ckzugeben
92       *
93       * @return	Die Kosten
94       */
95      public double getKosten()
96      {
97          return kosten;
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 kapazitaetsauslastung + " | " + kosten;
108 
109     }
110 }