src/main/java/xelfi/debugger/RemoteArray.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 RemoteArray extends RemoteValue {
jaroslav@10
    13
jaroslav@10
    14
    RemoteValue getElement(int index) {
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
    RemoteValue[] getElements() {
jaroslav@10
    19
        throw new UnsupportedOperationException();
jaroslav@10
    20
    }
jaroslav@10
    21
}