lastWindowTuple = window;
}
}
public void removeWindowTupleList( WindowTupleList window ) {
WindowTupleList previous = window.getListPrevious();
WindowTupleList next = window.getListNext();
if ( previous != null && next != null ) {
// remove from middle
previous.setListNext( next );
next.setListPrevious( previous );
} else if ( next != null ) {
// remove from first
next.setListPrevious( null );
firstWindowTuple = next;
} else if ( previous != null ) {
// remove from end
previous.setListNext( null );
lastWindowTuple = previous;