Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Sets (0.14 sec)

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

     *
     * @since 4.0.0
     */
    @Experimental
    public interface Toolchain {
        /**
         * get the type of toolchain.
         *
         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
         * @param toolName the tool platform independent tool name
         * @return file representing the tool executable, or null if the tool cannot be found
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/toolchain/Toolchain.java

     *
     * @since 2.0.9
     */
    public interface Toolchain {
    
        /**
         * get the type of toolchain.
         *
         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
         * @param toolName the tool platform independent tool name.
         * @return file representing the tool executable, or null if the tool can not be found
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.3K bytes
    - Viewed (0)
Back to top