fbca3699fd958e59bf4840e50b8cb13f842189c2
[mir.git] / source / mircoders / entity / EntityBreaking.java
1 package mircoders.entity;
2
3 /**
4  * Title: EntityBreaking
5  * Description: Maps table "breaking" to Java Object
6  * Copyright:    Copyright (c) 2001
7  * Company:      Indymedia.de
8  * @author /rk
9  * @version 1.0
10  */
11
12 import java.lang.*;
13 import java.io.*;
14 import java.util.*;
15 import java.sql.*;
16
17 import freemarker.template.*;
18
19 import mir.entity.*;
20 import mir.misc.*;
21 import mir.storage.*;
22
23 public class EntityBreaking extends Entity
24 {
25   private static int instances;
26
27         public EntityBreaking() {       super(); instances++;   }
28         public EntityBreaking(StorageObject theStorage) {       this(); setStorage(theStorage); }
29         public void finalize() {
30     instances--;
31     super.finalize();
32   }
33
34
35 }