コード例 #1
0
ファイル: EntityPallet.java プロジェクト: mchudleigh/jaamsim
  public static synchronized EntityPallet getInstance() {

    if (myInstance == null) {
      myInstance = new EntityPallet();
      myInstance.updateTree();
    }

    return myInstance;
  }
コード例 #2
0
ファイル: EntityPallet.java プロジェクト: mchudleigh/jaamsim
 /** Disposes the only instance of the entity pallet */
 public static synchronized void clear() {
   if (myInstance != null) {
     myInstance.dispose();
     myInstance = null;
   }
 }