yet another rewrite of the producers...
[mir.git] / source / mircoders / entity / adapter / OtherAdapterDefinition.java
1 package mircoders.entity.adapter;
2
3 import mir.entity.*;
4 import mir.entity.adapter.*;
5 import mircoders.storage.*;
6
7 public class OtherAdapterDefinition extends EntityAdapterDefinition {
8   private static OtherAdapterDefinition instance;
9
10   public static OtherAdapterDefinition getInstance() {
11     synchronized (OtherAdapterDefinition.class) {
12       if (instance == null) {
13         instance = new OtherAdapterDefinition();
14       }
15       return instance;
16     }
17   }
18
19   public OtherAdapterDefinition() {
20     super();
21   }
22 }