summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/lifecycle/instance/EventStorage.java
blob: a78a2bf05697c14d14d71a76bd29ae654e79b12c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.c2kernel.lifecycle.instance;
import java.io.Serializable;
import java.util.Hashtable;

/**
 * @version $Revision: 1.15 $ $Date: 2005/06/08 19:48:00 $
 * @author  $Author: abranson $
 */
public class EventStorage implements Serializable
{
    private Hashtable mLists;
	private EventList[] dummy = new EventList[0];
	public Integer lastTransitionStored;

	public EventList[] getLists()
	{
		return dummy;
	}
	
	public void setLists(EventList[] lists)
	{
	}
	
}