/usr/local/CPAN/Db-DFC/IDfDeleteNode.pm
# ------------------------------------------------------------------ #
# Db::DFC Version 0.4 -- Thu Feb 22 22:04:43 2001
# (C) 2000-2001 M.S. Roth
#
# IDfDeleteNode (com.documentum.operations.IDfDeleteNode)
# ------------------------------------------------------------------ #
package IDfDeleteNode;
@ISA = (IDfOperationNode);
use JPL::AutoLoader;
use JPL::Class 'com::documentum::operations::IDfDeleteNode';
use JPL::Class 'com.documentum.fc.common.IDfId';
use JPL::Class 'com.documentum.fc.client.IDfSysObject';
sub getObject {
## METHOD: com.documentum.fc.client.IDfSysObject getObject()
my $self = shift;
my $getObject = JPL::AutoLoader::getmeth('getObject',[],['com.documentum.fc.client.IDfSysObject']);
my $rv = "";
eval { $rv = $$self->$getObject(); };
if (JNI::ExceptionOccurred()) {
Db::DFC::dfcException();
return;
} else {
bless (\$rv,IDfSysObject);
return \$rv;
}
}
sub getObjectId {
## METHOD: com.documentum.fc.common.IDfId getObjectId()
my $self = shift;
my $getObjectId = JPL::AutoLoader::getmeth('getObjectId',[],['com.documentum.fc.common.IDfId']);
my $rv = "";
eval { $rv = $$self->$getObjectId(); };
if (JNI::ExceptionOccurred()) {
Db::DFC::dfcException();
return;
} else {
bless (\$rv,IDfId);
return \$rv;
}
}
sub wasDeleted {
## METHOD: boolean wasDeleted()
my $self = shift;
my $wasDeleted = JPL::AutoLoader::getmeth('wasDeleted',[],['boolean']);
my $rv = "";
eval { $rv = $$self->$wasDeleted(); };
if (JNI::ExceptionOccurred()) {
Db::DFC::dfcException();
return;
} else {
return $rv;
}
}
1;
# ------------------------------------------------------------------ #
# <SDG><
# ------------------------------------------------------------------ #