/**
   * Sets the theme of the Telephone Component. Creation date: (7/19/01 8:41:20 AM)
   *
   * @param theme java.lang.String The theme of the component
   */
  public void setTheme(String theme) {
    super.setTheme(theme);

    if (_txtAreaCodeStart != null) _txtAreaCodeStart.setTheme(theme);
    if (_txtAreaCodeEnd != null) _txtAreaCodeEnd.setTheme(theme);
    if (_txtSeparator != null) _txtSeparator.setTheme(theme);

    if (_editAreaCode != null) _editAreaCode.setTheme(theme);
    if (_editPhoneStart != null) _editPhoneStart.setTheme(theme);
    if (_editPhoneEnd != null) _editPhoneEnd.setTheme(theme);
  }