/**
  * Sets if this tee name is named using a standard color
  *
  * @param aIsStandardColor
  */
 public void setIsStandardColor(boolean aIsStandardColor) {
   teeName.setIsStandardColor(aIsStandardColor);
 }
 /**
  * Returns if this tee name is named using a standard color
  *
  * @return
  */
 public boolean isStandardColor() {
   return teeName.isIsStandardColor();
 }
 /**
  * Set the color
  *
  * @param aColor
  */
 public void setName(String aColor) {
   teeName.setName(aColor);
 }
 /**
  * Get the color
  *
  * @return
  */
 public String getName() {
   return teeName.getName();
 }
 /** Set the ID */
 public void setId(Object aId) {
   teeName.setId((Integer) aId);
 }
 /** Get the ID */
 public Integer getId() {
   return teeName != null ? teeName.getId() : null;
 }