Class: Google::Language

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, code) ⇒ Language

Returns a new instance of Language.



11
12
13
14
# File 'lib/google_translate.rb', line 11

def initialize(name, code)
  @name = name
  @code = code
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



9
10
11
# File 'lib/google_translate.rb', line 9

def code
  @code
end

#nameObject (readonly)

Returns the value of attribute name.



9
10
11
# File 'lib/google_translate.rb', line 9

def name
  @name
end

Instance Method Details

#to_sObject



16
17
18
# File 'lib/google_translate.rb', line 16

def to_s
  "(" + @code + ": " + @name + ")"
end