# encoding: utf-8 module LocalPac module ProxyPac class Result private attr_writer :is_nil public attr_accessor :content, :styled_content def initialize @is_nil = true end def nil? is_nil == nil end def proxy=(val) is_nil = false @proxy = val end def proxy_port=(val) is_nil = false @proxy_port = val end def request_type=(val) is_nil = false @request_type = val end end end end