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
jaroslav@10
     1
/*
jaroslav@10
     2
 * To change this license header, choose License Headers in Project Properties.
jaroslav@10
     3
 * To change this template file, choose Tools | Templates
jaroslav@10
     4
 * and open the template in the editor.
jaroslav@10
     5
 */
jaroslav@10
     6
package xelfi.debugger;
jaroslav@10
     7
jaroslav@10
     8
/**
jaroslav@10
     9
 *
jaroslav@10
    10
 * @author devel
jaroslav@10
    11
 */
jaroslav@10
    12
public class RemoteDebugger {
jaroslav@10
    13
jaroslav@10
    14
    public RemoteDebugger(String string, Debugger aThis, boolean b) {
jaroslav@10
    15
    }
jaroslav@10
    16
jaroslav@10
    17
    RemoteClass findClass(String className) {
jaroslav@10
    18
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    19
    }
jaroslav@10
    20
jaroslav@10
    21
    Object[] listBreakpoints() {
jaroslav@10
    22
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    23
    }
jaroslav@10
    24
jaroslav@10
    25
    RemoteThreadGroup run(int i, String[] args) {
jaroslav@10
    26
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    27
    }
jaroslav@10
    28
jaroslav@10
    29
    void close() {
jaroslav@10
    30
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    31
    }
jaroslav@10
    32
jaroslav@10
    33
    RemoteThreadGroup[] listThreadGroups(Object object) {
jaroslav@10
    34
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    35
    }
jaroslav@10
    36
jaroslav@10
    37
}