Class: Clases::PreguntaEscalado

Inherits:
Pregunta
  • Object
show all
Defined in:
lib/imposition/clases.rb

Instance Attribute Summary collapse

Attributes inherited from Pregunta

#ide, #mensaje, #ok, #yn

Instance Method Summary collapse

Methods inherited from Pregunta

#==

Constructor Details

#initialize(tipo) ⇒ PreguntaEscalado

Returns a new instance of PreguntaEscalado.



329
330
331
332
333
334
335
336
337
338
339
# File 'lib/imposition/clases.rb', line 329

def initialize(tipo)    
  @tipo=tipo
  if @tipo=="horizontalmente" then
    @ide=1
    @mensaje=I18n.t(:WnX)+" "+I18n.t(tipo) 
  elsif @tipo=="verticalmente" then
    @ide=2
    @mensaje=I18n.t(:HnY)+" "+I18n.t(tipo)
  end
  @mensaje+=I18n.t(:scale, :tp=>I18n.t(tipo))
end

Instance Attribute Details

#tipoObject

Returns the value of attribute tipo.



328
329
330
# File 'lib/imposition/clases.rb', line 328

def tipo
  @tipo
end

Instance Method Details

#metodo(yn) ⇒ Object



340
341
342
343
# File 'lib/imposition/clases.rb', line 340

def metodo(yn)
  @yn=yn
  @ok=true
end