COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => SDK => Topic started by: louis on 06 Aug 2009 08:49:07 AM

Title: BaseClassWrapper class
Post by: louis on 06 Aug 2009 08:49:07 AM
i create a java class to delete a report,i was found sdk sample like this:
       
        BaseClassWrapper reportToBeDeleted;

        BaseClass reportsForDeletion[] =new BaseClass[] { reportToBeDeleted.getBaseClassObject()};
        int delReturnCode =cmService.delete(reportsForDeletion, delOptions);

but i can't run this class, because of i can't find BaseClassWrapper class,so i want to know ,where i can find this class.
Title: Re: BaseClassWrapper class
Post by: kolonell on 06 Aug 2009 09:34:49 AM
This Class is part of the Samples that come with the SDK Software Package (c8/sdk/samples) . I think you can find the .java file in the Common folder .
Title: Re: BaseClassWrapper class
Post by: louis on 06 Aug 2009 10:20:03 AM
yes, i can find DeleteReport.java in sample folder,but when i import BaseClassWrapper Class , i can't found this class in cognos lib

please to see attachments
Title: Re: BaseClassWrapper class
Post by: kolonell on 06 Aug 2009 10:43:55 AM
Oh I see ... that is because that class is not part of the "...bibus._3." package. It is just a Sample Class that is created in the "Common" Project folder.

There are many ways to solve this issue (which depend on IDE as well) but the simplest is to just to copy the BaseClassWrapper.java file into the reportDel/ folder.
Then there is no need to prefix the class name with the package identifier.
Title: Re: BaseClassWrapper class
Post by: louis on 06 Aug 2009 11:00:58 AM
oh, haha ,yes, i have got it, thank you very much