The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Moose::Policy::JavaAccessors - BeCause EveryOne Loves CamelCase

SYNOPSIS

  package Foo;
  
  use Moose::Policy 'Moose::Policy::JavaAccessors';
  use Moose;
  
  has 'bar' => (is => 'rw', default => 'Foo::bar');
  has 'baz' => (is => 'ro', default => 'Foo::baz');
  
  # Foo now has (get, set)Bar methods as well as getBaz

DEPRECATION NOTICE

Moose::Policy is deprecated.

DESCRIPTION

This meta-policy changes the behavior of Moose's default behavior in regard to accessors to follow Java convention and use CamelCase.

CAVEAT

This does a very niave conversion to CamelCase, basically it just runs ucfirst on the attribute name. Since I don't use CamelCase (at least not anymore), this is good enough. If you really want to use this, and need a more sophisicated conversion, patches welcome :)

BUGS

All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.

AUTHOR

Stevan Little <stevan@iinteractive.com>

COPYRIGHT AND LICENSE

Copyright 2006-2007 by Infinity Interactive, Inc.

http://www.iinteractive.com

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.