Class: Origami::XDP::Packet::Config::Severity
- Inherits:
-
Origami::XFA::ConfigElement
- Object
- REXML::Element
- Origami::XFA::Element
- Origami::XFA::ConfigElement
- Origami::XDP::Packet::Config::Severity
- Defined in:
- lib/origami/xfa/config.rb
Constant Summary collapse
- IGNORE =
"ignore"- ERROR =
"error"- INFORMATION =
"information"- TRACE =
"trace"- WARNING =
"warning"
Instance Method Summary collapse
-
#initialize(level = IGNORE) ⇒ Severity
constructor
A new instance of Severity.
Methods included from Origami::XFA
Constructor Details
#initialize(level = IGNORE) ⇒ Severity
Returns a new instance of Severity.
275 276 277 278 279 |
# File 'lib/origami/xfa/config.rb', line 275 def initialize(level = IGNORE) super('severity') self.text = level end |