Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [Dltk-dev] IFileHandler javadoc

Hi Jae,

Yes you are right, for windows toOSString() returned incorrect value.
I've fixed this things in HEAD. Also I've added documentation.

Method toString() are equals to toOSString() and return environment path.

Also same results could be obtained using following code:
IEnvironment environment = ...
String osSpecificPath = environment.convertPathToString(path);

Thanks,
Andrei.
hello all -

i was wondering if someone could add some javadoc to these methods. i'm most interested in these 3 methods:

  toOSString();
  getCanonicalPath();
  toString()

why do i need to call toString() to get the os specific path (ie: C:\\blah for windows) instead of 'toOSString()' - are they reversed or is that how it is supposed to work? i see this is how the TclActiveStateDebuggerRunner does it, but it still seems like they should be reversed (or toOSString() should really return what toString() does).

--
-jae


Back to the top