Sets the array of slice labels. The array size must be the stack size or larger
(String[] labels)
| 384 | |
| 385 | /** Sets the array of slice labels. The array size must be the stack size or larger */ |
| 386 | protected void setSliceLabels(String[] labels) { |
| 387 | if (labels != null && labels.length < getSize()) |
| 388 | throw new IllegalArgumentException("Labels array too short: "+labels.length); |
| 389 | this.labels = labels; |
| 390 | } |
| 391 | |
| 392 | /** Always returns true. */ |
| 393 | public boolean isVirtual() { |
no test coverage detected