Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
absEmpty |
|
| 1.0;1 |
1 | class absEmpty extends absVector { | |
2 | int size; | |
3 | int increment; | |
4 | int capacity; | |
5 | 304 | absEmpty (int S, int I, int C) { size=S; increment=I; capacity=C; } |
6 | } |