Class: Origami::XDP::Packet::Config::Threshold
- Inherits:
-
Origami::XFA::ConfigElement
- Object
- REXML::Element
- Origami::XFA::Element
- Origami::XFA::ConfigElement
- Origami::XDP::Packet::Config::Threshold
- Defined in:
- lib/origami/xfa/config.rb
Constant Summary collapse
- TRACE =
"trace"
- ERROR =
"error"
- INFORMATION =
"information"
- WARN =
"warn"
Instance Method Summary collapse
-
#initialize(threshold = TRACE) ⇒ Threshold
constructor
A new instance of Threshold.
Methods included from Origami::XFA
Constructor Details
#initialize(threshold = TRACE) ⇒ Threshold
Returns a new instance of Threshold.
399 400 401 402 403 |
# File 'lib/origami/xfa/config.rb', line 399 def initialize(threshold = TRACE) super('threshold') self.text = threshold end |