class RIMS::Protocol::FetchBody

Public Instance Methods

fetch_att_name() click to toggle source
# File lib/rims/protocol/parser.rb, line 10
def fetch_att_name
  s = ''
  s << symbol
  s << '.' << option if option
  s << '[' << section << ']'
  if (partial_origin) then
    s << '<' << partial_origin.to_s << '.' << partial_size.to_s << '>'
  end

  s
end
msg_att_name() click to toggle source
# File lib/rims/protocol/parser.rb, line 22
def msg_att_name
  s = ''
  s << symbol
  s << '[' << section << ']'
  if (partial_origin) then
    s << '<' << partial_origin.to_s << '>'
  end

  s
end