I have been using the code from http://customernet.emc.com/developer/Component_Exchange/TrapImportTBO.htm as a basis for finding out what overriden methods are called by various webtop operations. I understand that doSetFile should be called from the import and checkin processes amongst others. However, from examining the stdout output from the test system it appears not to be called at all. I'm wondering if I have something wrong with the definition of the overriden method and it is in effect not overriding.
The code I am using is as follows:
protected void doSetFile(String fileName, String formatName,
int pageNumber, String otherFile, Object[] arg4)
throws DfException{
System.out.println(getObjectId() + " doSetFile " + fileName + " " + formatName + " " + isNew()); System.
out.println("Title : " + getTitle());
super.doSetFile(fileName, formatName,
pageNumber,
otherFile, arg4);
}
This is on a Documentum 6.5SP2 system
Thanks in advance
Andy