Package com.buschmais.jqassistant.core.scanner.api.ArtifactScannerPlugin

Examples of com.buschmais.jqassistant.core.scanner.api.ArtifactScannerPlugin.InputStreamSource


     *
     * @param inputStream The input stream.
     * @return The {@link InputStreamSource}.
     */
    private InputStreamSource getStreamSource(final InputStream inputStream) {
        return new InputStreamSource() {
            @Override
            public InputStream openStream() throws IOException {
                return new BufferedInputStream((inputStream));
            }
        };
View Full Code Here

TOP

Related Classes of com.buschmais.jqassistant.core.scanner.api.ArtifactScannerPlugin.InputStreamSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.