Class: Clases::Pregunta
- Inherits:
-
Object
- Object
- Clases::Pregunta
- Defined in:
- lib/imposition/clases.rb
Direct Known Subclasses
PreguntaCXC, PreguntaEscalado, PreguntaExigePar, PreguntaReducir, PreguntaTodasPag
Instance Attribute Summary collapse
-
#ide ⇒ Object
readonly
Returns the value of attribute ide.
-
#mensaje ⇒ Object
Returns the value of attribute mensaje.
-
#ok ⇒ Object
Returns the value of attribute ok.
-
#yn ⇒ Object
Returns the value of attribute yn.
Instance Method Summary collapse
- #==(question) ⇒ Object
-
#initialize(arg) ⇒ Pregunta
constructor
A new instance of Pregunta.
- #metodo ⇒ Object
Constructor Details
#initialize(arg) ⇒ Pregunta
Returns a new instance of Pregunta.
283 284 285 286 287 288 289 |
# File 'lib/imposition/clases.rb', line 283 def initialize(arg) if arg.instance_of? String then @mensaje=arg else @ide=arg end end |
Instance Attribute Details
#ide ⇒ Object (readonly)
Returns the value of attribute ide.
282 283 284 |
# File 'lib/imposition/clases.rb', line 282 def ide @ide end |
#mensaje ⇒ Object
Returns the value of attribute mensaje.
281 282 283 |
# File 'lib/imposition/clases.rb', line 281 def mensaje @mensaje end |
#ok ⇒ Object
Returns the value of attribute ok.
281 282 283 |
# File 'lib/imposition/clases.rb', line 281 def ok @ok end |
#yn ⇒ Object
Returns the value of attribute yn.
281 282 283 |
# File 'lib/imposition/clases.rb', line 281 def yn @yn end |
Instance Method Details
#==(question) ⇒ Object
292 293 294 295 296 297 |
# File 'lib/imposition/clases.rb', line 292 def ==(question) if question==nil then return false end return @ide==question.ide end |
#metodo ⇒ Object
290 291 |
# File 'lib/imposition/clases.rb', line 290 def metodo() end |