001package org.apache.maven.toolchain.java;
002
003/*
004 * Licensed to the Apache Software Foundation (ASF) under one
005 * or more contributor license agreements.  See the NOTICE file
006 * distributed with this work for additional information
007 * regarding copyright ownership.  The ASF licenses this file
008 * to you under the Apache License, Version 2.0 (the
009 * "License"); you may not use this file except in compliance
010 * with the License.  You may obtain a copy of the License at
011 *
012 *  http://www.apache.org/licenses/LICENSE-2.0
013 *
014 * Unless required by applicable law or agreed to in writing,
015 * software distributed under the License is distributed on an
016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017 * KIND, either express or implied.  See the License for the
018 * specific language governing permissions and limitations
019 * under the License.
020 */
021
022import org.apache.maven.toolchain.Toolchain;
023
024/**
025 * JDK toolchain interface.
026 *
027 * @author Jason van Zyl
028 * @author Milos Kleint
029 * @since 2.0.9, renamed from JavaToolChain in 3.2.4
030 */
031public interface JavaToolchain
032    extends Toolchain
033{
034//    /**
035//     * Returns a list of {@link java.io.File}s which represents the bootstrap libraries for the
036//     * runtime environment. The Bootstrap libraries include libraries in JRE's
037//     * extension directory, if there are any.
038//     *
039//     * @return List
040//     */
041//    List getBootstrapLibraries();
042//
043//    /**
044//     * Returns a list of {@link java.io.File}s which represent the libraries recognized by
045//     * default by the platform. Usually it corresponds to contents of CLASSPATH
046//     * environment variable.
047//     *
048//     * @return List
049//     */
050//    List getStandardLibraries();
051//
052//    /**
053//     * Returns a {@link java.io.File}s which represent the locations of the source of the JDK,
054//     * or an empty collection when the location is not set or is invalid.
055//     *
056//     * @return List
057//     */
058//    List getSourceDirectories();
059//
060//    /**
061//     * Returns a {@link java.io.File}s which represent the locations of the Javadoc for this platform,
062//     * or empty collection if the location is not set or invalid
063//     *
064//     * @return List
065//     */
066//    List getJavadocFolders();
067}