| Module | SOAP::SOAPType |
| In: |
soap/baseData.rb
|
| definedtype | [RW] | |
| elename | [RW] | |
| encodingstyle | [RW] | |
| extraattr | [R] | |
| id | [RW] | |
| parent | [RW] | |
| position | [RW] | |
| precedents | [R] | |
| root | [RW] |
# File soap/baseData.rb, line 46 def initialize(*arg) super @encodingstyle = nil @elename = XSD::QName::EMPTY @id = nil @precedents = [] @root = false @parent = nil @position = nil @definedtype = nil @extraattr = {} end
# File soap/baseData.rb, line 59 def inspect if self.is_a?(XSD::NSDBase) sprintf("#<%s:0x%x %s %s>", self.class.name, __id__, self.elename, self.type) else sprintf("#<%s:0x%x %s>", self.class.name, __id__, self.elename) end end
ruby-doc.org is a community service provided by Happy Camper Studios, a Phoenix, Arizona, Ruby application development company.
Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.
For more information on the Ruby programming language, visit ruby-lang.org.
Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.