The base class of all datatypes with Namespace.
[Source]
# File lib/xsd/datatypes.rb, line 92 92: def self.inherited(klass) 93: @@types << klass 94: end
# File lib/xsd/datatypes.rb, line 100 100: def initialize 101: end
# File lib/xsd/datatypes.rb, line 96 96: def self.types 97: @@types 98: end
# File lib/xsd/datatypes.rb, line 103 103: def init(type) 104: @type = type 105: end
[Validate]