# Deleted.pm: Class Used for Deleted RDA Objects package RDA::Deleted; # $Id: Deleted.pm,v 1.5 2013/11/22 11:34:59 RDA Exp $ # ARCS: $Header: /home/cvs/cvs/RDA_8/src/scripting/lib/RDA/Deleted.pm,v 1.5 2013/11/22 11:34:59 RDA Exp $ # # Change History # 20131021 MSC Make code more strict. =head1 NAME RDA::Deleted - Class Used for Deleted RDA Objects. =head1 SYNOPSIS require RDA::Deleted; =head1 DESCRIPTION RDA used the C class to indicate that an object is deleted and should no longer be used. The following methods are available: =cut use strict; BEGIN { use Exporter; use RDA::Text qw(get_string); } # Define the global public variables use vars qw($STRINGS $VERSION @ISA); $VERSION = sprintf('%d.%02d', q$Revision: 1.5 $ =~ /(\d+)\.(\d+)/); @ISA = qw(Exporter); # Define the global private constants # Define the global private variables # Report the package version sub Version { return $VERSION; } =head2 S<$h-Eas_string> This method returns the object as a string. =cut sub as_string { return q{}; } =head2 S<$h-Eget_oid> This method returns the object identifier. =cut sub get_oid { return 'DELETED'; } 1; __END__ =head1 SEE ALSO L, L =head1 COPYRIGHT NOTICE Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved. =head1 TRADEMARK NOTICE Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners. =cut