@author Brady
| 21 | * @author Brady |
| 22 | */ |
| 23 | public abstract class AbstractMask implements Mask { |
| 24 | |
| 25 | private final int widthX; |
| 26 | private final int heightY; |
| 27 | private final int lengthZ; |
| 28 | |
| 29 | public AbstractMask(int widthX, int heightY, int lengthZ) { |
| 30 | this.widthX = widthX; |
| 31 | this.heightY = heightY; |
| 32 | this.lengthZ = lengthZ; |
| 33 | } |
| 34 | |
| 35 | @Override |
| 36 | public int widthX() { |
| 37 | return this.widthX; |
| 38 | } |
| 39 | |
| 40 | @Override |
| 41 | public int heightY() { |
| 42 | return this.heightY; |
| 43 | } |
| 44 | |
| 45 | @Override |
| 46 | public int lengthZ() { |
| 47 | return this.lengthZ; |
| 48 | } |
| 49 | } |
nothing calls this directly
no outgoing calls
no test coverage detected