View Javadoc

1   package org.ximtec.igesture.io.tuio.handler;
2   
3   import java.util.Hashtable;
4   import java.util.Vector;
5   
6   public abstract class AbstractTuioCursorHandler<T> extends AbstractTuioHandler {
7   
8   	protected Hashtable<Long,T> cursorList = new Hashtable<Long,T>();
9   	protected Vector<Long> aliveCursorList = new Vector<Long>();
10  	protected Vector<Long> newCursorList = new Vector<Long>();
11  	protected Vector<T> frameCursors = new Vector<T>();
12  
13  	protected Vector<T> freeCursorList = new Vector<T>();
14  	protected int maxCursorID = -1;
15  }