Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getJarURL (0.17 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/FileReference.java

         */
        String getPath();
    
        /**
         * Returns the target file.
         */
        File getFile();
    
        /**
         * Returns the jar URL of the file
         */
        String getJarURL();
        /**
         * Returns true if this reference is relative to a path variable.
         */
        boolean isRelativeToPathVariable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/FileReferenceFactory.java

                return file;
            }
    
            @Override
            public String getPath() {
                return path;
            }
    
            @Override
            public String getJarURL(){
                //windows needs an additional backslash in jar urls
                return  "jar:" + file.toURI() + "!/";
    
            }
    
            @Override
            public boolean isRelativeToPathVariable() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractLibrary.java

            return javadocPath;
        }
    
        public void setJavadocPath(FileReference path) {
            this.javadocPath = path;
            if (path != null) {
                String location = path.getJarURL();
                getEntryAttributes().put(ATTRIBUTE_JAVADOC_LOCATION, location);
            } else {
                getEntryAttributes().remove(ATTRIBUTE_JAVADOC_LOCATION);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top