public String toString() {
   return left.getImageLabel() + " " + operation + " " + right.getImageLabel();
 }
 public String getImageLabel() {
   return left.getImageLabel() + operation.operand() + right.getImageLabel();
 }