1 package org.ximtec.igesture.io.tuio.handler;
2
3 import java.util.Hashtable;
4 import java.util.Vector;
5
6 public abstract class AbstractTuioObjectHandler<T> extends AbstractTuioHandler{
7
8 protected Hashtable<Long,T> objectList = new Hashtable<Long,T>();
9 protected Vector<Long> aliveObjectList = new Vector<Long>();
10 protected Vector<Long> newObjectList = new Vector<Long>();
11
12 protected Vector<T> frameObjects = new Vector<T>();
13 }