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
     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 RemoteArray extends RemoteValue {
    13 
    14     RemoteValue getElement(int index) {
    15         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    16     }
    17 
    18     RemoteValue[] getElements() {
    19         throw new UnsupportedOperationException();
    20     }
    21 }