Class: Origami::XDP::Packet::Template::Boolean
- Inherits:
-
Origami::XFA::NamedTemplateElement
- Object
- REXML::Element
- Origami::XFA::Element
- Origami::XFA::TemplateElement
- Origami::XFA::NamedTemplateElement
- Origami::XDP::Packet::Template::Boolean
- Defined in:
- lib/origami/xfa/template.rb
Constant Summary collapse
- NO =
0
- YES =
1
Instance Method Summary collapse
-
#initialize(bool = nil) ⇒ Boolean
constructor
A new instance of Boolean.
Methods included from Origami::XFA
Constructor Details
#initialize(bool = nil) ⇒ Boolean
Returns a new instance of Boolean.
37 38 39 40 41 |
# File 'lib/origami/xfa/template.rb', line 37 def initialize(bool = nil) super('boolean') self.text = bool end |