()
| 21 | private int d; //denomenator |
| 22 | //--------------------------------------------------- |
| 23 | public ADTFraction() {//default constructor |
| 24 | this.n=0; |
| 25 | this.d=1; |
| 26 | } |
| 27 | //--------------------------------------------------- |
| 28 | public ADTFraction(int a, int b) {//parameter constructor |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected