RE: [SourceJammer-devel] Status of a file?
Brought to you by:
robertmacgrogan
From: Gupta, K. <kar...@tr...> - 2006-04-28 03:27:13
|
Hi Rob, Thanks for the quick reply. I got the file checkout status working using the code snippet you = mentioned,=20 and "file diff" status using the CommandCentral.hasLocalFileChanged() = method. I can find out if a "file does not exist in SJ", by catching=20 NodeDoesNotExistException :-) - Karan -----Original Message----- From: sou...@li... [mailto:sou...@li...]On Behalf Of Robert MacGrogan Sent: Wednesday, April 26, 2006 7:39 AM To: ML SJ Devel (E-mail) Subject: Re: [SourceJammer-devel] Status of a file? No really easy way. But here's how it's done: Project folder =3D = SimpleInterface.getInstance().getProjectObj(parentFolderId); NodeInfo fileNode =3D (NodeInfo)folder.getNode(fileName); fileNode.isCheckedOut(); fileNode.getCheckedOutToUser(); For the "diff from local" status, well, that's a bit more complex. = Unfortunately I never created a simply utility to test for this. To see how this is done, take a look at = the method rebuildDisplayList() in ProjectTreeNode. Hopefully this will point you = in the right direction. --Rob --- "Gupta, Karan" <kar...@tr...> wrote: > Hi, > =20 > Is there a method somewhere in the SJ source code to do the following: > =20 > String status =3D SimpleInterface.getInstance().getStatus(fileID); > where status could be "checked out", "diffFromLocal", "checked out to = user 'username' ", etc.. > =20 > Thanks, > Karan Gupta > Software Engineer > TransCore, San Diego=20 > (858) 736 - 8246 > =20 >=20 __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around=20 http://mail.yahoo.com=20 ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, = security? Get stuff done quickly with pre-integrated technology to make your job = easier Download IBM WebSphere Application Server v.1.0.1 based on Apache = Geronimo http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat=3D= 121642 _______________________________________________ SourceJammer-devel mailing list Sou...@li... https://lists.sourceforge.net/lists/listinfo/sourcejammer-devel |