Default domain type
[Source]
# File yaml/types.rb, line 33 def initialize( domain, type, val ) @domain = domain; @type_id = type; @value = val @value.taguri = "tag:#{ @domain }:#{ @type_id }" end
# File yaml/types.rb, line 30 def self.tag_subclasses?; false; end
# File yaml/types.rb, line 37 def to_yaml( opts = {} ) @value.to_yaml( opts ) end
[Validate]