HTTP::MobileAttribute::Plugin::IS::ThirdForce - is_* plugin for ThirdForce phones.


HTTP-MobileAttribute documentation Contained in the HTTP-MobileAttribute distribution.

Index


Code Index:

NAME

Top

HTTP::MobileAttribute::Plugin::IS::ThirdForce - is_* plugin for ThirdForce phones.

METHODS

Top

is_type_c =item is_type_p =item is_type_w =item is_type_3gc

check the type.

AUTHORS

Top

Tokuhiro Matsuno

SEE ALSO

Top

HTTP::MobileAttribute


HTTP-MobileAttribute documentation Contained in the HTTP-MobileAttribute distribution.

package HTTP::MobileAttribute::Plugin::IS::ThirdForce;
use strict;
use warnings;
use base qw/HTTP::MobileAttribute::Plugin/;

sub is_type_c   :CarrierMethod('ThirdForce') { $_[1]->type =~ /^C/ }
sub is_type_p   :CarrierMethod('ThirdForce') { $_[1]->type =~ /^P/ }
sub is_type_w   :CarrierMethod('ThirdForce') { $_[1]->type =~ /^W/ }
sub is_type_3gc :CarrierMethod('ThirdForce') { $_[1]->type eq '3GC' }

1;
__END__