Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for unmodifiableCollection (0.07 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * The returned collection is unmodifiable.
         *
         * @see #addSourceRoot(SourceRoot)
         */
        public Collection<SourceRoot> getSourceRoots() {
            return Collections.unmodifiableCollection(sources);
        }
    
        /**
         * {@return all enabled sources that provide files in the given language for the given scope}.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      private static class GenericClass<T> {
        private interface Base {}
      }
    
      private static IterableSubject makeUnmodifiable(Collection<?> actual) {
        return assertThat(Collections.<Object>unmodifiableCollection(actual));
      }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:44:53 UTC 2025
    - 89K bytes
    - Viewed (0)
Back to top