Sets the Capacity, and yes it accepts 63 Bit Numbers
(long aCapacity)
| 292 | public FluidTankGT setIndex(int aIndex) {mIndex = aIndex; return this;} |
| 293 | /** Sets the Capacity, and yes it accepts 63 Bit Numbers */ |
| 294 | public FluidTankGT setCapacity(long aCapacity) {if (aCapacity >= 0) mCapacity = aCapacity; return this;} |
| 295 | /** Always keeps at least 0 Liters of Fluid instead of setting it to null */ |
| 296 | public FluidTankGT setPreventDraining() {return setPreventDraining(T);} |
| 297 | /** Always keeps at least 0 Liters of Fluid instead of setting it to null */ |
no test coverage detected