blob: 3cd0374198f392860f5224a398860f37b4a1b444 [file] [log] [blame]
package com.sun.jdi;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.util.List;
public interface ThreadGroupReference extends ObjectReference {
public String name();
public ThreadGroupReference parent();
public void resume();
public void suspend();
public List threadGroups();
public List threads();
}