src/main/java/xelfi/debugger/RemoteDebugger.java
branchDirtyFix
changeset 10 fe294d0f1297
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/main/java/xelfi/debugger/RemoteDebugger.java	Tue Jan 17 21:12:37 2017 +0100
     1.3 @@ -0,0 +1,37 @@
     1.4 +/*
     1.5 + * To change this license header, choose License Headers in Project Properties.
     1.6 + * To change this template file, choose Tools | Templates
     1.7 + * and open the template in the editor.
     1.8 + */
     1.9 +package xelfi.debugger;
    1.10 +
    1.11 +/**
    1.12 + *
    1.13 + * @author devel
    1.14 + */
    1.15 +public class RemoteDebugger {
    1.16 +
    1.17 +    public RemoteDebugger(String string, Debugger aThis, boolean b) {
    1.18 +    }
    1.19 +
    1.20 +    RemoteClass findClass(String className) {
    1.21 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.22 +    }
    1.23 +
    1.24 +    Object[] listBreakpoints() {
    1.25 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.26 +    }
    1.27 +
    1.28 +    RemoteThreadGroup run(int i, String[] args) {
    1.29 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.30 +    }
    1.31 +
    1.32 +    void close() {
    1.33 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.34 +    }
    1.35 +
    1.36 +    RemoteThreadGroup[] listThreadGroups(Object object) {
    1.37 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.38 +    }
    1.39 +
    1.40 +}