Class: Origami::XDP::Packet::Config::Severity
- Inherits:
-
Origami::XFA::Element
- Object
- REXML::Element
- Origami::XFA::Element
- Origami::XDP::Packet::Config::Severity
- Defined in:
- lib/origami/xfa.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.
413 414 415 416 417 |
# File 'lib/origami/xfa.rb', line 413 def initialize(level = IGNORE) super('severity') self.text = level end |