Class: RetroIDL::ASN::ComponentType
- Inherits:
-
Object
- Object
- RetroIDL::ASN::ComponentType
- Defined in:
- lib/retro_idl/asn/component_type.rb
Overview
Copyright © 2016 Cameron Harper
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Instance Method Summary collapse
-
#initialize(**opts) ⇒ ComponentType
constructor
A new instance of ComponentType.
- #link(mod, stack) ⇒ Object
- #optional? ⇒ true, false
-
#to_s ⇒ String
Convert object to ASN.1 syntax representation.
Constructor Details
#initialize(**opts) ⇒ ComponentType
Returns a new instance of ComponentType.
22 23 24 25 26 27 |
# File 'lib/retro_idl/asn/component_type.rb', line 22 def initialize(**opts) @optional = opts[:optional] @type = RetroIDL::ASN.const_get(opts[:class]).new( **opts ) end |
Instance Method Details
#link(mod, stack) ⇒ Object
29 30 31 32 33 |
# File 'lib/retro_idl/asn/component_type.rb', line 29 def link(mod, stack) @type.link(mod, stack.push(self)) end |
#optional? ⇒ true, false
44 45 46 47 48 49 50 51 52 |
# File 'lib/retro_idl/asn/component_type.rb', line 44 def optional? if @optional true else false end end |
#to_s ⇒ String
Convert object to ASN.1 syntax representation
36 37 38 39 40 |
# File 'lib/retro_idl/asn/component_type.rb', line 36 def to_s @type.to_s end |