summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/lifecycle/instance/EventList.java
blob: be255fb50f3ecf229f5b9449d6c10c83e85c7d81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.c2kernel.lifecycle.instance;

import java.io.Serializable;

/**
 * @version $Revision: 1.9 $ $Date: 2005/06/08 19:47:59 $
 * @author $Author: abranson $
 */
public class EventList implements Serializable {
	private int[] dummy = new int[0];
	public int transition=-1;

	public int[] getNums() {
		return dummy;
	}

	public void setNums(int[] nums) {
	}
}