Methods
Constants
PARSE_TYPE = :MADDRESS
Public Instance methods
addrs()
     # File lib/action_mailer/vendor/tmail/header.rb, line 256
256:     def addrs
257:       ensure_parsed
258:       @addrs
259:     end
Private Instance methods
do_accept( strategy )
     # File lib/action_mailer/vendor/tmail/header.rb, line 275
275:     def do_accept( strategy )
276:       first = true
277:       @addrs.each do |a|
278:         if first
279:           first = false
280:         else
281:           strategy.meta ','
282:           strategy.space
283:         end
284:         a.accept strategy
285:       end
286: 
287:       @comments.each do |c|
288:         strategy.space
289:         strategy.meta '('
290:         strategy.text c
291:         strategy.meta ')'
292:       end
293:     end
init()
     # File lib/action_mailer/vendor/tmail/header.rb, line 263
263:     def init
264:       @addrs = []
265:     end
isempty?()
     # File lib/action_mailer/vendor/tmail/header.rb, line 271
271:     def isempty?
272:       @addrs.empty?
273:     end
set( a )
     # File lib/action_mailer/vendor/tmail/header.rb, line 267
267:     def set( a )
268:       @addrs = a
269:     end