KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > ipanema > accounting > tariffpriceconfig > FormulaPriceConfig


1 /*
2  * Created on Feb 26, 2005
3  */

4 package com.nightlabs.ipanema.accounting.tariffpriceconfig;
5
6 /**
7  * @author Marco Schulze - marco at nightlabs dot de
8  *
9  * @jdo.persistence-capable
10  * identity-type = "application"
11  * persistence-capable-superclass = "com.nightlabs.ipanema.accounting.tariffpriceconfig.TariffPriceConfig"
12  * detachable = "true"
13  *
14  * @jdo.inheritance strategy = "new-table"
15  */

16 public class FormulaPriceConfig extends TariffPriceConfig
17 {
18
19     public FormulaPriceConfig()
20     {
21     }
22
23     /**
24      * @see com.nightlabs.ipanema.accounting.PriceConfig#isDependentOnProductPackage()
25      */

26     public boolean isDependentOnProductPackage()
27     {
28         return true;
29     }
30
31     /**
32      * @see com.nightlabs.ipanema.accounting.PriceConfig#idAssigned()
33      */

34     protected void idAssigned()
35     {
36         // TODO Auto-generated method stub
37

38     }
39 }
40
Popular Tags