Package net.janino.util

Examples of net.janino.util.TeeReader


            if (optionalFileName == null && Boolean.getBoolean("net.janino.source_debugging.enable")) {
                String dirName = System.getProperty("net.janino.source_debugging.dir");
                File dir = dirName == null ? null : new File(dirName);
                File temporaryFile = File.createTempFile("janino", ".java", dir);
                temporaryFile.deleteOnExit();
                in = new TeeReader(
                    in,                            // in
                    new FileWriter(temporaryFile), // out
                    true                           // closeWriterOnEOF
                );
                optionalFileName = temporaryFile.getAbsolutePath();
View Full Code Here

TOP

Related Classes of net.janino.util.TeeReader

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.