Sha256: 2047ce7d9adf52ba8469fdb54691bcecb9a02affb0f4e25b6b93268c903d9000
Contents?: true
Size: 780 Bytes
Versions: 1
Compression:
Stored size: 780 Bytes
Contents
# =XMPP4R - XMPP Library for Ruby # License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option. # Website::http://xmpp4r.github.io require 'xmpp4r/muc/item' module Jabber module MUC class XMUCUserItem < MUC::UserItem name_xmlns 'item', 'http://jabber.org/protocol/muc#user' def initialize(affiliation=nil, role=nil, jid=nil) super() set_affiliation(affiliation) set_role(role) set_jid(jid) end def continue c = nil each_element('continue') { |xe| c = xe } c.nil? end def continue=(c) delete_elements('continue') add_element('continue') if c end def set_continue(c) self.continue = c self end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xmpp4r-0.5.6 | lib/xmpp4r/muc/x/mucuseritem.rb |