Class: Clases::PreguntaEscalado
- Defined in:
- lib/imposition/clases.rb
Instance Attribute Summary collapse
-
#tipo ⇒ Object
Returns the value of attribute tipo.
Attributes inherited from Pregunta
Instance Method Summary collapse
-
#initialize(tipo) ⇒ PreguntaEscalado
constructor
A new instance of PreguntaEscalado.
- #metodo(yn) ⇒ Object
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
#tipo ⇒ Object
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 |