KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > hibernate > Contraband


1 package test.hibernate;
2
3 /**
4  * @author Administrator
5  *
6  * @hibernate.subclass
7  * discriminator-value="contraband"
8  */

9 public class Contraband extends ImportedProduct {
10
11     /**
12      * Constructor for Contraband.
13      */

14     public Contraband() {
15         super();
16     }
17
18 }
19
Popular Tags