NAME Views.pm

Object oriented interface to Clearcase Views

VERSION

Author

Andrew DeFaria <Andrew@DeFaria.com>

Revision

$Revision: 1.12 $

Created

Dec 29 12:07:59 PST 2005

Modified

$Date: 2011/11/16 19:46:13 $

SYNOPSIS

Provides access to information about Clearcase Views.

my $views = new Clearcase::Views;

my $nbr_views	= $views->views;
my @view_list	= $views->views;

print "Clearcase Views\n";

print "Number of views:\t\t"	. $nbr_views . "\n";
print "View list:\n";

print "\t$_\n" foreach (@view_list);

DESCRIPTION

This module implements an object oriented interface to Clearcase views.

ROUTINES

The following routines are exported:

new

Construct a new Clearcase Views object.

Parameters:

none

Returns:

Clearcase Views object

views

Return a list of view tags in an array context or the number of views in a scalar context.

Parameters:

none

Returns:

List of views or number of views

Array of view tags in an array context or the number of views in a scalar context.

dynamic

Return the number of dynamic views

Parameters:

none

Returns:

number of dynamic views

Returns the number of dynamic views in the region

ucm

Return the number of ucm views

Parameters:

none

Returns:

number of ucm views

Returns the number of ucm views in the region

snapshot

Return the number of snapshot views

Parameters:

none

Returns:

number of snapshot views

Returns the number of snapshot views in the region

web

Return the number of web views

Parameters:

none

Returns:

number of web views

Returns the number of web views in the region

DEPENDENCIES

Modules

Clearcase

INCOMPATABILITIES

None

BUGS AND LIMITATIONS

There are no known bugs in this module.

Please report problems to Andrew DeFaria <Andrew@DeFaria.com>.

COPYRIGHT AND LICENSE

Copyright (C) 2020 by Andrew@DeFaria.com

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.38.0 or, at your option, any later version of Perl 5 you may have available.