Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getRelPath (0.09 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Path.java

         * The url of the path. Must not be null.
         */
        public String getUrl() {
            return url;
        }
    
        /**
         * The relative path of the path. Must not be null.
         */
        public String getRelPath() {
            return relPath;
        }
    
        /**
         * Canonical url.
         */
        public String getCanonicalUrl() {
            return canonicalUrl;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

            for (Path modulePath : modulePaths) {
                Map<String, Object> attributes = new LinkedHashMap<>();
                attributes.put("fileurl", modulePath.getUrl());
                attributes.put("filepath", modulePath.getRelPath());
                modulesNode.appendNode("module", attributes);
            }
            findOrCreateModules().replaceNode(modulesNode);
        }
    
        private void storeWildcards() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top