Hello, I am attempting to do a checkout using the following method from the simpleInterface:
checkOutFile(long fileID, java.lang.String fileName, java.io.File targetDir, int eolType)
I keep getting the following error:
java.lang.NullPointerException
at org.sourcejammer.client.gui.CommandCentral.getSelectedFileNodeInfo(Unknown Source)
Here are the values before the method call:
the filename:ae.jar
the targetdir:C:\temp
the file id:222
eolType = 3;
I got the file id from NodeInfo.getUniqueId(), as far as I can tell all of the values are valid, is there something else I may be overlooking?
Thanks Brian