src/main/java/xelfi/debugger/RemoteThreadGroup.java
author Jaroslav Tulach <jaroslav.tulach@xelfi.cz>
Tue, 17 Jan 2017 21:12:37 +0100
branchDirtyFix
changeset 10 fe294d0f1297
permissions -rw-r--r--
Making the project compilable
     1 /*
     2  * To change this license header, choose License Headers in Project Properties.
     3  * To change this template file, choose Tools | Templates
     4  * and open the template in the editor.
     5  */
     6 package xelfi.debugger;
     7 
     8 /**
     9  *
    10  * @author devel
    11  */
    12 class RemoteThreadGroup {
    13 
    14     Object getName() {
    15         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    16     }
    17 
    18     RemoteThread[] listThreads(boolean b) {
    19         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    20     }
    21 
    22 }