Class: Meteor::RootElement

Inherits:
Element
  • Object
show all
Defined in:
lib/meteor.rb

Overview

root element class (ルート要素クラス)

Constant Summary

EMPTY =
''

Instance Attribute Summary (collapse)

Attributes inherited from Element

attributes, copy, cx, document_sync, empty, mixed_content, mono, name, origin, parser, pattern, removed, type_value, usable

Instance Method Summary (collapse)

Methods inherited from Element

#[], #[]=, #attr, #attr_map, #clone, #content, #content=, #cxtag, #document, #document=, #element, #execute, #find, #flush, new!, #remove, #remove_attr

Constructor Details

- (RootElement) initialize

イニシャライザ



450
451
452
453
454
455
456
457
# File 'lib/meteor.rb', line 450

def initialize()
  #コンテントタイプ
  #@contentType = ''
  #改行コード
  #@kaigyoCode = ''
  #文字コード
  #@character_encoding=''
end

Instance Attribute Details

- (Object) character_encoding

String

character encoding (エンコーディング)



462
463
464
# File 'lib/meteor.rb', line 462

def character_encoding
  @character_encoding
end

- (Object) charset

String

charset (文字コード)



461
462
463
# File 'lib/meteor.rb', line 461

def charset
  @charset
end

- (Object) content_type

String

content type (コンテントタイプ)



459
460
461
# File 'lib/meteor.rb', line 459

def content_type
  @content_type
end

- (Object) kaigyo_code

String

newline (改行コード)



460
461
462
# File 'lib/meteor.rb', line 460

def kaigyo_code
  @kaigyo_code
end