/* XBN Java: Generically useful, non-GUI Java code. http://sourceforge.net/projects/xbnjava Copyright (C) 1997-2003, Jeff Epstein All rights reserved. Modifications: No Redistribution in binary form, with or without modifications, are permitted provided that the following conditions are met: * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * If modifications are made to source code then this license should indicate that fact in the "Modifications" section above. * Neither the author, nor the contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. [NOTE: This license contains NO advertising clause.] */ package xbn.output; /**
An OWFile where the destination is System.out, and optionally to file. This is primarily used in xbn.unittest.UTRunner.
Source code: OWSDOAndFile.java.
Create an OWSDOAndFile that only prints via System.out.
Equal to OWFile()
Create an OWSDOAndFile.
Equal to OWFile(s_fileName)
Create an OWSDOAndFile.
Equal to OWFile(s_fileName, b_append)
Write a line of output to to both standard out and file.
Equal to write(true, true, s_message)
Write a line of output to to both standard out and file.
Output is written to file (via OWFile.write) only when isActive equals true.
@param b_sdo If true, then write this message toSystem.out
. If false, don't.
@param b_file If true, then write this message to file (assuming the file is active). If false, don't.
@param s_message The message to write.
**/
public void write(boolean b_sdo, boolean b_file, String s_message) {
if(b_sdo) {
sopl(s_message);
}
if(b_file && isActive()) {
super.write(s_message);
}
}
/**
Write a line of output to to both standard out and file.
Equal to writeNoln(true, true, s_message)
Write a line of output (with no ending line break) to to both standard out and file.
Output is written to file (via OWFile.writeNoln) only when isActive equals true.
@param b_sdo If true, then write this message toSystem.out
. If false, don't.
@param b_file If true, then write this message to file (assuming the file is active). If false, don't.
@param s_message The message to write.
**/
public void writeNoln(boolean b_sdo, boolean b_file, String s_message) {
if(b_sdo) {
sop(s_message);
}
if(b_file && isActive()) {
super.writeNoln(s_message);
}
}
/**
Write a newline only, to both standard out and file.
Output is written to file (via OWFile.newln) only when isActive equals true.
**/ public void newln() { sopl(); if(isActive()) { super.newln(); } } }