src/main/java/xelfi/debugger/RemoteStackFrame.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/RemoteStackFrame.java	Tue Jan 17 21:12:37 2017 +0100
     1.3 @@ -0,0 +1,40 @@
     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 +class RemoteStackFrame {
    1.16 +
    1.17 +    RemoteStackVariable[] getLocalVariables() {
    1.18 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.19 +    }
    1.20 +
    1.21 +    String getMethodName() {
    1.22 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.23 +    }
    1.24 +
    1.25 +    Name getRemoteClass() {
    1.26 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.27 +    }
    1.28 +
    1.29 +    int getLineNumber() {
    1.30 +        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.31 +    }
    1.32 +
    1.33 +    static class Name {
    1.34 +
    1.35 +        public Name() {
    1.36 +        }
    1.37 +
    1.38 +        public String getName() {
    1.39 +            throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    1.40 +        }
    1.41 +    }
    1.42 +
    1.43 +}