()
| 328 | public boolean changed() {return mChangedFluids;} |
| 329 | |
| 330 | public long amount() {return isEmpty() ? 0 : mAmount;} |
| 331 | public long amount(long aMax) {return isEmpty() || aMax <= 0 ? 0 : Math.min(mAmount, aMax);} |
| 332 | |
| 333 | public long capacity ( ) {return mAdjustableCapacity == null ? mCapacity : capacity_(mFluid);} |
no test coverage detected