NAME

Net::Jabber::X::GC - Jabber X GroupChat Delegate

SYNOPSIS

 Net::Jabber::X::GC is a companion to the Net::Jabber::X module.
 It provides the user a simple interface to set and retrieve all 
 parts of a Jabber X GroupChat.

 The main purpose for this module is to handle nick changes from
 a groupchat server (i.e. IRC, etc...)

DESCRIPTION

  To initialize the GC with a Jabber <x/> you must pass it the 
  XML::Parser Tree array from the module trying to access the <x/>.  
  In the callback function:

    use Net::Jabber;

    sub iq {
      my $foo = new Net::Jabber::Foo(@_);

      my @xTags = $foo->GetX("jabber:x:gc");

      my $xTag;
      foreach $xTag (@xTags) {
	$xTag->....
	
      }
      .
      .
      .
    }

  You now have access to all of the retrieval functions available.

  To create a new GC to send to the server:

    use Net::Jabber;

    $foo = new Net::Jabber::Foo();
    $xTag = $foo->NewX("jabber:x:gc");

  Now you can call the creation functions below.

  For more information about the array format being passed to the CallBack
  please read the Net::Jabber::Client documentation.

Retrieval functions

$nick = $xTag->GetNick();

Creation functions

$xTag->SetGC(nick=>"bob");

$xTag->SetNick("bob_");

METHODS

Retrieval functions

GetNick() - returns a string with the Jabber Identifier of the 
            person who added the gc.

Creation functions

SetGC(nick=>string) - set multiple fields in the <x/> at one
                      time.  This is a cumulative and over
                      writing action.  If you set the "nick"
                      attribute twice, the second setting is
                      what is used.  If you set the nick, and
                      then set another field then both will be in
                      the <x/> tag.  For valid settings read the
                      specific Set functions below.

SetNick(string) - sets the new nick sent from the server.

AUTHOR

By Ryan Eatmon in May of 2000 for http://jabber.org..

COPYRIGHT

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.