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
jaroslav@10
     1
/*
jaroslav@10
     2
 * To change this license header, choose License Headers in Project Properties.
jaroslav@10
     3
 * To change this template file, choose Tools | Templates
jaroslav@10
     4
 * and open the template in the editor.
jaroslav@10
     5
 */
jaroslav@10
     6
package xelfi.debugger;
jaroslav@10
     7
jaroslav@10
     8
/**
jaroslav@10
     9
 *
jaroslav@10
    10
 * @author devel
jaroslav@10
    11
 */
jaroslav@10
    12
class RemoteClass {
jaroslav@10
    13
jaroslav@10
    14
    String clearBreakpointLine(int lineNumber) {
jaroslav@10
    15
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    16
    }
jaroslav@10
    17
jaroslav@10
    18
    RemoteField getMethod(String main) {
jaroslav@10
    19
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    20
    }
jaroslav@10
    21
jaroslav@10
    22
    String setBreakpointLine(int lineNumber) {
jaroslav@10
    23
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    24
    }
jaroslav@10
    25
jaroslav@10
    26
    String setBreakpointMethod(RemoteField rf) {
jaroslav@10
    27
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
jaroslav@10
    28
    }
jaroslav@10
    29
jaroslav@10
    30
}