src/main/java/xelfi/debugger/RemoteStackFrame.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 class RemoteStackFrame {
    13 
    14     RemoteStackVariable[] getLocalVariables() {
    15         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    16     }
    17 
    18     String getMethodName() {
    19         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    20     }
    21 
    22     Name getRemoteClass() {
    23         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    24     }
    25 
    26     int getLineNumber() {
    27         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    28     }
    29 
    30     static class Name {
    31 
    32         public Name() {
    33         }
    34 
    35         public String getName() {
    36             throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    37         }
    38     }
    39 
    40 }