Returns true if this is a Lab stack.
()
| 381 | |
| 382 | /** Returns true if this is a Lab stack. */ |
| 383 | public boolean isLab() { |
| 384 | return getSize()==3 && getSliceLabel(1)!=null && getSliceLabel(1).equals("L*"); |
| 385 | } |
| 386 | |
| 387 | /** Returns true if this is a virtual (disk resident) stack. |
| 388 | This method is overridden by the VirtualStack subclass. */ |
no test coverage detected