File: Warning.pm

package info (click to toggle)
libwebservice-validator-html-w3c-perl 0.28-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 192 kB
  • sloc: perl: 293; makefile: 2
file content (32 lines) | stat: -r--r--r-- 678 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# $Id: Error.pm 32 2003-11-26 13:52:18Z struan $

package WebService::Validator::HTML::W3C::Warning;

use strict;
use base qw(Class::Accessor);

__PACKAGE__->mk_accessors( qw( line col msg source ) );

1;

__END__

=head1 NAME 

WebService::Validator::HTML::W3C::Warning - Warning messages from the W3Cs online Validator

=head1 DESCRIPTION

This is a wee internal module for WebService::Validator::HTML::W3C. It has
three methods: line, col and msg which return the line number, column number 
and the warning that occured at that location in a validated page.

=head1 SEE ALSO

L<WebService::Validator::HTML::W3C>

=head1 AUTHOR

Struan Donald E<lt>struan@cpan.orgE<gt>

=cut