Java::JCR::Nodetype - Load the JCR node type class wrappers


Java-JCR documentation Contained in the Java-JCR distribution.

Index


Code Index:

NAME

Top

Java::JCR::Nodetype - Load the JCR node type class wrappers

SYNOPSIS

Top

  use Java::JCR::Nodetype;

DESCRIPTION

Top

This loads the Perl classes mapped to the javax.jcr.nodetype package.

You might notice the odd letter case of this package differs from that of the node type class (Java::JCR::Nodetype::NodeType). This has to do with the way the package was imported. This may be corrected in the future.

AUTHOR

Top

Andrew Sterling Hanenkamp, <hanenkamp@cpan.org>

LICENSE AND COPYRIGHT

Top


Java-JCR documentation Contained in the Java-JCR distribution.
package Java::JCR::Nodetype;

use strict;
use warnings;

our $VERSION = '0.01';

use base qw( Java::JCR );

Java::JCR::import_my_packages();

1