# File lib/jabber4r/protocol.rb, line 1178
1178:       def method_missing(methId, *args)
1179:           tag = methId.id2name
1180:           if tag[0..4]=="attr_"
1181:             return @attributes[tag[5..-1]]
1182:           end
1183:           list = @element_children[tag]
1184:           return list[0] if list
1185:           return NilParsedXMLElement.instance
1186:       end