/* 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.string.padchop; import xbn.XBNObject; /**

Part of PCSConfig that configures crash-if-null-specific items. See PCSConfig.

Source code:  SpcfcCfgIfNull.java

@version 0.9b @author Jeff Epstein, http://sourceforge.net/projects/xbnjava. **/ public class SpcfcCfgIfNull extends XBNObject { private boolean bCrashIfNull = false; private StringBuffer sbIfNull = null; /**

Create a SpcfcCfgIfNull with default settings.

Equal to SpcfcCfgIfNull(false)

**/ public SpcfcCfgIfNull() { this(false); } /**

Create a SpcfcCfgIfNull.

Equal to SpcfcCfgIfNull(b_crashIfNull, (new StringBuffer("")))

**/ public SpcfcCfgIfNull(boolean b_crashIfNull) { this(b_crashIfNull, (new StringBuffer(sES))); } /**

Create a SpcfcCfgIfNull.

Equal to SpcfcCfgIfNull(false, sb_ifNull)

**/ public SpcfcCfgIfNull(StringBuffer sb_ifNull) { this(false, sb_ifNull); } /**

Create a SpcfcCfgIfNull.

@param b_crashIfNull If true and [the string to be padded/chopped] is null, throw an AssertException. If false and [the string to be padded/chopped] is null, return sb_ifNull. See doCrashIfNull. @param sb_ifNull The StringBuffer to return when [the string to be padded/chopped] is null and b_crashIfNull is false. See getIfNullSB. **/ public SpcfcCfgIfNull(boolean b_crashIfNull, StringBuffer sb_ifNull) { throwAXIfNull(sb_ifNull, "sb_ifNull", sCNSTR); bCrashIfNull = b_crashIfNull; sbIfNull = sb_ifNull; } /**

If [the string to be padded/trimmed] is null, should an exception be thrown?

@return b_crashIfNull Exactly as provided to the constructor. **/ public final boolean doCrashIfNull() { return bCrashIfNull; } /**

If [the string to be padded/trimmed] is null, what should be returned in its place?

@return sb_ifNull Exactly as provided to the constructor. **/ public final StringBuffer getIfNullSB() { return sbIfNull; } /**

Get some information about this SpcfcCfgIfNull.

**/ public String toString() { return this.getClass().getName() + ": doCrashIfNull()=" + doCrashIfNull() + ", getIfNullSB()='" + getIfNullSB().toString() + "'"; } }