/* change XYZ to your initials below... */

/**
 * describe XYZColor here...
 * @author your name here
 */

/* please add javadoc comments to 
   public methods (including constructors) below */

public class XYZRGB implements RGB {

    /* private instance variables */

    /* constructor */

    /* challenge: add an additional constructor whose
       argument is a String of the form "#FF002A" */

    /* sketches of the methods you must implement...
       note that they currently return meaningless values */

    public int r() {
	return -1;
    }

    public int g() {
	return -1;
    }

    public int b() {
	return -1;
    }

    public String hexcode() {
	return "hex";
    }

    public boolean equals(RGB that) {
	return false;
    }

}
