package bigRat; /** * TODO Put here a description of what this class does. * * @author . */ public class BigRational /* implements Rational */ { /** * TODO Put here a description of what this constructor does. * * @param numerator * @param denominator */ public BigRational(String numerator, String denominator) { // TODO: implement constructor System.out.println("Got numerator: " + numerator); System.out.println("Got denominator: " + denominator); } }