Methods
Constants
PARSE_TYPE = :MADDRESS
Public Instance methods
addrs()
     # File lib/action_mailer/vendor/tmail/header.rb, line 237
237:     def addrs
238:       ensure_parsed
239:       @addrs
240:     end
Private Instance methods
do_accept( strategy )
     # File lib/action_mailer/vendor/tmail/header.rb, line 256
256:     def do_accept( strategy )
257:       first = true
258:       @addrs.each do |a|
259:         if first
260:           first = false
261:         else
262:           strategy.meta ','
263:           strategy.space
264:         end
265:         a.accept strategy
266:       end
267: 
268:       @comments.each do |c|
269:         strategy.space
270:         strategy.meta '('
271:         strategy.text c
272:         strategy.meta ')'
273:       end
274:     end
init()
     # File lib/action_mailer/vendor/tmail/header.rb, line 244
244:     def init
245:       @addrs = []
246:     end
isempty?()
     # File lib/action_mailer/vendor/tmail/header.rb, line 252
252:     def isempty?
253:       @addrs.empty?
254:     end
set( a )
     # File lib/action_mailer/vendor/tmail/header.rb, line 248
248:     def set( a )
249:       @addrs = a
250:     end