Badger::Data::Facet::Class - metaprogramming module for data facet classes
package Badger::Data::Facet::Text::Example;
use Badger::Data::Facet::Class
version => 0.01,
type => 'text', # base data type
args => 'foo bar', # mandatory arguments
opts => 'baz bam'; # optional arguments
This module implements a subclass of Badger::Class for creating data validation
facets.
This module implements the following methods in addition to those inherited from
the Badger::Class base class.
This method implements the "type" import hook
for specifying the base data type for a validation facet.
This method implements the "args" import hook
for specifying the mandatory configuration arguments for a validation fact.
This method implements the "opts" import hook
for specifying the optional configuration arguments for a validation facet.
Andy Wardley <http://wardley.org/>
Copyright (C) 2008-2012 Andy Wardley. All Rights Reserved.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
Badger::Base, Badger::Data::Facet.