Merge /pub/main
[educational.data.git] / Dr.NO / src / drno / server / database / persistence / StateDeleted.java
blob8b8aff2cbbd78b76c5e6ff8b27a5ab79e84b0087
1 /*
2 * Created on 2005-04-02
3 * This file is created 2005-04-02 and descripes StateDeleted
4 */
5 package drno.server.database.persistence;
7 /**
8 * @author tobibobi
9 */
10 final class StateDeleted extends AbstractState {
11 /**
12 * Singleton constructor.
13 * <p>
14 * private forces use of instance.
16 private StateDeleted() {
18 /** singleton instance */
19 public final static AbstractState instance = new StateDeleted();
22 boolean canUnload() {
23 // the object is now deleted, so no need to keep it in memory
24 return true;