/**
   * Specifies the Style Class to be used for the Telephone Component. Creation date: (7/19/01
   * 8:41:20 AM)
   *
   * @param sClass java.lang.String A name of a class in Html to be used by this component
   */
  public void setClassName(String sClass) {
    super.setClassName(sClass);

    if (_bApplyStyle) {
      if (_txtAreaCodeStart != null) _txtAreaCodeStart.setClassName(sClass);
      if (_txtAreaCodeEnd != null) _txtAreaCodeEnd.setClassName(sClass);
      if (_txtSeparator != null) _txtSeparator.setClassName(sClass);
    }

    if (_editAreaCode != null) _editAreaCode.setClassName(sClass);
    if (_editPhoneStart != null) _editPhoneStart.setClassName(sClass);
    if (_editPhoneEnd != null) _editPhoneEnd.setClassName(sClass);
  }