646566676869707172
*/ public ThreadOnlyFilter (ThreadId tid) throws InvalidThreadException { if (tid == null || tid.getReference().get () == null) throw new InvalidThreadException (tid.getId ()); _tid = tid; }
6768697071727374757677
*/ public StepFilter (ThreadId tid, int size, int depth) throws InvalidThreadException { if (tid.getReference().get () == null) throw new InvalidThreadException (tid.getId ()); _tid = tid; _size = size; _depth = depth; }
767778798081828384
/* Spec says if thread is null, not valid, or exited, throw invalid thread */ // FIXME: not valid? exited? Is this check valid? if (thread == null || !thread.isAlive ()) throw new InvalidThreadException (getId ()); return thread; }