Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fordi (0.12 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Obtain the {@link DependencyScope} from the specified {@code id}.
         * <p>
         * Shortcut for {@code DependencyScope.forId(...)}.
         *
         * @see org.apache.maven.api.DependencyScope#forId(String)
         */
        @Nonnull
        DependencyScope requireDependencyScope(@Nonnull String id);
    
        /**
         * Obtain the {@link PathScope} from the specified {@code id}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

            return getService(ProjectScopeRegistry.class).require(id);
        }
    
        @Override
        public DependencyScope requireDependencyScope(String id) {
            return DependencyScope.forId(nonNull(id, "id"));
        }
    
        @Override
        public PathScope requirePathScope(String id) {
            return getService(PathScopeRegistry.class).require(id);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 27.2K bytes
    - Viewed (0)
Back to top