/* 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.template.util; import xbn.XBNObject; import xbn.output.Outputter; import xbn.template.GapConfig; import xbn.template.OGCThree; import xbn.util.FLRFile; /**

A GetTOG3From where the source text comes from a file.

Source code:  GetTOG3FFile.java.

@version 0.9b @author Jeff Epstein, http://sourceforge.net/projects/xbnjava. **/ public class GetTOG3FFile extends GetTOG3From { /** extends XBNObject

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3)))

**/ public GetTOG3FFile(String s_fileName, String s_gap1, String s_gap2, String s_gap3) { this(s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3))); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_templateName, s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3)))

**/ public GetTOG3FFile(String s_templateName, String s_fileName, String s_gap1, String s_gap2, String s_gap3) { this(s_templateName, s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3))); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3)), gap_config)

**/ public GetTOG3FFile(String s_fileName, String s_gap1, String s_gap2, String s_gap3, GapConfig gap_config) { this(s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3)), gap_config); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3)), optr_dbg)

**/ public GetTOG3FFile(String s_fileName, String s_gap1, String s_gap2, String s_gap3, Outputter optr_dbg) { this(s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3)), optr_dbg); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_templateName, s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3)), gap_config)

**/ public GetTOG3FFile(String s_templateName, String s_fileName, String s_gap1, String s_gap2, String s_gap3, GapConfig gap_config) { this(s_templateName, s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3)), gap_config); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_templateName, s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3)), optr_dbg)

**/ public GetTOG3FFile(String s_templateName, String s_fileName, String s_gap1, String s_gap2, String s_gap3, Outputter optr_dbg) { this(s_templateName, s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3)), optr_dbg); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_templateName, s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3)), gap_config, optr_dbg)

**/ public GetTOG3FFile(String s_templateName, String s_fileName, String s_gap1, String s_gap2, String s_gap3, GapConfig gap_config, Outputter optr_dbg) { this(s_templateName, s_fileName, (new OGCThree(s_gap1, s_gap2, s_gap3)), gap_config, optr_dbg); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_fileName, ogc_three)

**/ public GetTOG3FFile(String s_fileName, OGCThree ogc_three) { this(null, s_fileName, ogc_three); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_templateName, s_fileName, ogc_three)

**/ public GetTOG3FFile(String s_templateName, String s_fileName, OGCThree ogc_three) { this(s_templateName, s_fileName, ogc_three, (new GapConfig())); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_fileName, ogc_three, gap_config)

**/ public GetTOG3FFile(String s_fileName, OGCThree ogc_three, GapConfig gap_config) { this(null, s_fileName, ogc_three, gap_config); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_fileName, ogc_three, optr_dbg)

**/ public GetTOG3FFile(String s_fileName, OGCThree ogc_three, Outputter optr_dbg) { this(null, s_fileName, ogc_three, optr_dbg); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_templateName, s_fileName, ogc_three, gap_config)

**/ public GetTOG3FFile(String s_templateName, String s_fileName, OGCThree ogc_three, GapConfig gap_config) { this(s_templateName, s_fileName, ogc_three, gap_config, (new Outputter())); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFile(s_templateName, s_fileName, ogc_three, optr_dbg)

**/ public GetTOG3FFile(String s_templateName, String s_fileName, OGCThree ogc_three, Outputter optr_dbg) { this(s_templateName, s_fileName, ogc_three, (new GapConfig()), optr_dbg); } /**

Create a GetTOG3FFile.

Equal to GetTOG3FFrom(s_templateName, s_fileName, ogc_three, gap_config, optr_dbg)

**/ public GetTOG3FFile(String s_templateName, String s_fileName, OGCThree ogc_three, GapConfig gap_config, Outputter optr_dbg) { super(s_templateName, (new FLRFile(s_fileName)), ogc_three, gap_config, optr_dbg); } }