Re: Updates

From: Stefan Klein (stefan.klei..ess-gmbh.de)
Date: Mon Jul 24 2006 - 07:29:11 EDT

  • Next message: Mike Schrag: "Re: Updates"

    Hi,

    the link to the API document of WebObjects (shift F2) does not work.

    I have changed the WOClasspahtContainer class to fit the problem, but I
    don't have write access to the svn.
    So, it would be fine if someone can add it to the source repository.

    Stefan

    Code snippet:

    private void _initPath() {
    ...
        javadoc = new IClasspathAttribute[1];
        String osName = System.getProperty("os.name").toLowerCase();
        if (osName.indexOf("windows") >= 0)
        {
            javadoc[0] = JavaCore
                    
    .newClasspathAttribute(IClasspathAttribute.JAVADOC_LOCATION_ATTRIBUTE_NAME,
                        
    "file:///C:/Apple/Developer/Documentation/WebObjects/Reference/API/");
        }
        else
        {
            javadoc[0] = JavaCore
                    
    .newClasspathAttribute(IClasspathAttribute.JAVADOC_LOCATION_ATTRIBUTE_NAME,
                        
    "file:///Developer/ADC%20Reference%20Library/documentation/WebObjects/Reference/API/");
        }
    ...
    }





    This archive was generated by hypermail 2.0.0 : Mon Jul 24 2006 - 07:29:25 EDT