src/main/java/xelfi/debugger/RemoteThread.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
package xelfi.debugger;
jaroslav@10
     2
jaroslav@10
     3
class RemoteThread extends RemoteValue {
jaroslav@10
     4
	RemoteStackVariable[] getStackVariables() {
jaroslav@10
     5
        return new RemoteStackVariable[0];
jaroslav@10
     6
    }
jaroslav@10
     7
jaroslav@10
     8
    int getCurrentFrameIndex() {
jaroslav@10
     9
        return 1;
jaroslav@10
    10
    }
jaroslav@10
    11
jaroslav@10
    12
    String getName() {
jaroslav@10
    13
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    14
    }
jaroslav@10
    15
jaroslav@10
    16
    void cont() {
jaroslav@10
    17
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    18
    }
jaroslav@10
    19
jaroslav@10
    20
    void resetCurrentFrameIndex() {
jaroslav@10
    21
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    22
    }
jaroslav@10
    23
jaroslav@10
    24
    void next() {
jaroslav@10
    25
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    26
    }
jaroslav@10
    27
jaroslav@10
    28
    void stop() {
jaroslav@10
    29
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    30
    }
jaroslav@10
    31
jaroslav@10
    32
    RemoteStackFrame[] dumpStack() {
jaroslav@10
    33
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    34
    }
jaroslav@10
    35
jaroslav@10
    36
    void step(boolean b) {
jaroslav@10
    37
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    38
    }
jaroslav@10
    39
jaroslav@10
    40
    RemoteStackVariable getStackVariable(String token) {
jaroslav@10
    41
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    42
    }
jaroslav@10
    43
jaroslav@10
    44
    RemoteStackFrame getCurrentFrame() {
jaroslav@10
    45
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    46
    }
jaroslav@10
    47
jaroslav@10
    48
}