Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getAccessRules (0.22 sec)

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

                return false;
            }
            AbstractLibrary that = (AbstractLibrary) o;
            return Objects.equal(isExported(), that.isExported())
                && Objects.equal(getAccessRules(), that.getAccessRules())
                && Objects.equal(getJavadocPath(), that.getJavadocPath())
                && Objects.equal(getNativeLibraryLocation(), that.getNativeLibraryLocation())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseClasspathEntry.java

         * @return The access rules.
         * @throws UnsupportedMethodException For Gradle versions older than 3.0, where this method is not supported.
         *
         * @since 3.0
         */
        DomainObjectSet<? extends AccessRule> getAccessRules() throws UnsupportedMethodException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseClasspathEntry.java

            this.accessRules = accessRules;
        }
    
        public List<DefaultClasspathAttribute> getClasspathAttributes() {
            return classpathAttributes;
        }
    
        public List<DefaultAccessRule> getAccessRules() {
            return accessRules;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractClasspathEntry.java

        }
    
        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        public Set<AccessRule> getAccessRules() {
            return accessRules;
        }
    
        public void setAccessRules(Set<AccessRule> accessRules) {
            this.accessRules = accessRules;
        }
    
        public Map<String, Object> getEntryAttributes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

        }
    
        private static List<DefaultAccessRule> createAccessRules(AbstractClasspathEntry classpathEntry) {
            List<DefaultAccessRule> result = new ArrayList<>();
            for (AccessRule accessRule : classpathEntry.getAccessRules()) {
                result.add(createAccessRule(accessRule));
            }
            return result;
        }
    
        private static DefaultAccessRule createAccessRule(AccessRule accessRule) {
            int kindCode;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry.getAccessRules()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractClasspathEntry.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top