src/main/java/xelfi/debugger/RemoteClass.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 RemoteClass {
    13 
    14     String clearBreakpointLine(int lineNumber) {
    15         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    16     }
    17 
    18     RemoteField getMethod(String main) {
    19         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    20     }
    21 
    22     String setBreakpointLine(int lineNumber) {
    23         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    24     }
    25 
    26     String setBreakpointMethod(RemoteField rf) {
    27         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    28     }
    29 
    30 }