src/main/java/xelfi/debugger/RemoteDebugger.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 public class RemoteDebugger {
    13 
    14     public RemoteDebugger(String string, Debugger aThis, boolean b) {
    15     }
    16 
    17     RemoteClass findClass(String className) {
    18         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    19     }
    20 
    21     Object[] listBreakpoints() {
    22         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    23     }
    24 
    25     RemoteThreadGroup run(int i, String[] args) {
    26         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    27     }
    28 
    29     void close() {
    30         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    31     }
    32 
    33     RemoteThreadGroup[] listThreadGroups(Object object) {
    34         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    35     }
    36 
    37 }