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