src/main/java/xelfi/debugger/RemoteObject.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 package xelfi.debugger;
     2 
     3 class RemoteObject extends RemoteValue {
     4 
     5     RemoteValue getFieldValue(String token) {
     6         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
     7     }
     8 
     9     RemoteField[] getFields() {
    10         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    11     }
    12 
    13 }