/// <summary>
        /// Returns the data that should be placed in the JTable
        /// at the given row and column. </summary>
        /// <param name="row"> the row for which to return data. </param>
        /// <param name="col"> the column for which to return data. </param>
        /// <returns> the data that should be placed in the JTable at the given row and col. </returns>
        public virtual object getValueAt(int row, int col)
        {
            if (_sortOrder != null)
            {
                row = _sortOrder[row];
            }

            StateMod_StreamEstimate bfs = (StateMod_StreamEstimate)_data.get(row);

            switch (col)
            {
            case COL_ID:
                return(bfs.getID());

            case COL_NAME:
                return(bfs.getName());

            case COL_NODE_ID:
                return(bfs.getCgoto());

            case COL_DAILY_ID:
                return(bfs.getCrunidy());

            default:
                return("");
            }
        }
        /// <summary>
        /// Writes a list of StateMod_StreamEstimate objects to a list file.  A header is
        /// printed to the top of the file, containing the commands used to generate the
        /// file.  Any strings in the body of the file that contain the field delimiter will be wrapped in "...". </summary>
        /// <param name="filename"> the name of the file to which the data will be written. </param>
        /// <param name="delimiter"> the delimiter to use for separating field values. </param>
        /// <param name="update"> whether to update an existing file, retaining the current
        /// header (true) or to create a new file with a new header. </param>
        /// <param name="data"> the list of objects to write. </param>
        /// <param name="newComments"> list of new comments to add in the file header. </param>
        /// <exception cref="Exception"> if an error occurs. </exception>
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public static void writeListFile(String filename, String delimiter, boolean update, java.util.List<StateMod_StreamEstimate> data, java.util.List<String> newComments) throws Exception
        public static void writeListFile(string filename, string delimiter, bool update, IList <StateMod_StreamEstimate> data, IList <string> newComments)
        {
            int size = 0;

            if (data != null)
            {
                size = data.Count;
            }

            IList <string> fields = new List <string>();

            fields.Add("ID");
            fields.Add("Name");
            fields.Add("RiverNodeID");
            fields.Add("DailyID");
            int fieldCount = fields.Count;

            string[] names   = new string[fieldCount];
            string[] formats = new string[fieldCount];
            int      comp    = StateMod_DataSet.COMP_STREAMESTIMATE_STATIONS;

            string s = null;

            for (int i = 0; i < fieldCount; i++)
            {
                s          = fields[i];
                names[i]   = StateMod_Util.lookupPropValue(comp, "FieldName", s);
                formats[i] = StateMod_Util.lookupPropValue(comp, "Format", s);
            }

            string oldFile = null;

            if (update)
            {
                oldFile = IOUtil.getPathUsingWorkingDir(filename);
            }

            int                     j    = 0;
            PrintWriter             @out = null;
            StateMod_StreamEstimate se   = null;
            IList <string>          commentIndicators = new List <string>(1);

            commentIndicators.Add("#");
            IList <string> ignoredCommentIndicators = new List <string>(1);

            ignoredCommentIndicators.Add("#>");
            string[]      line   = new string[fieldCount];
            StringBuilder buffer = new StringBuilder();

            try
            {
                // Add some basic comments at the top of the file.  Do this to a copy of the
                // incoming comments so that they are not modified in the calling code.
                IList <string> newComments2 = null;
                if (newComments == null)
                {
                    newComments2 = new List <string>();
                }
                else
                {
                    newComments2 = new List <string>(newComments);
                }
                newComments2.Insert(0, "");
                newComments2.Insert(1, "StateMod stream estimate stations as a delimited list file.");
                newComments2.Insert(2, "");
                @out = IOUtil.processFileHeaders(oldFile, IOUtil.getPathUsingWorkingDir(filename), newComments2, commentIndicators, ignoredCommentIndicators, 0);

                for (int i = 0; i < fieldCount; i++)
                {
                    if (i > 0)
                    {
                        buffer.Append(delimiter);
                    }
                    buffer.Append("\"" + names[i] + "\"");
                }

                @out.println(buffer.ToString());

                for (int i = 0; i < size; i++)
                {
                    se = (StateMod_StreamEstimate)data[i];

                    line[0] = StringUtil.formatString(se.getID(), formats[0]).Trim();
                    line[1] = StringUtil.formatString(se.getName(), formats[1]).Trim();
                    line[2] = StringUtil.formatString(se.getCgoto(), formats[2]).Trim();
                    line[3] = StringUtil.formatString(se.getCrunidy(), formats[3]).Trim();

                    buffer = new StringBuilder();
                    for (j = 0; j < fieldCount; j++)
                    {
                        if (j > 0)
                        {
                            buffer.Append(delimiter);
                        }
                        if (line[j].IndexOf(delimiter, StringComparison.Ordinal) > -1)
                        {
                            line[j] = "\"" + line[j] + "\"";
                        }
                        buffer.Append(line[j]);
                    }

                    @out.println(buffer.ToString());
                }
                @out.flush();
                @out.close();
                @out = null;
            }
            catch (Exception e)
            {
                // TODO SAM 2009-01-05 Log it?
                throw e;
            }
            finally
            {
                if (@out != null)
                {
                    @out.flush();
                    @out.close();
                }
                @out = null;
            }
        }
        /// <summary>
        /// Write the new (updated) river baseflow stations file.  If an original file is
        /// specified, then the original header is carried into the new file. </summary>
        /// <param name="infile"> Name of old file or null if no old file to update. </param>
        /// <param name="outfile"> Name of new file to create (can be the same as the old file). </param>
        /// <param name="theRivs"> list of StateMod_StreamEstimate to write. </param>
        /// <param name="newcomments"> New comments to write in the file header. </param>
        /// <param name="do_daily"> Indicates whether daily modeling fields should be written. </param>
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public static void writeStateModFile(String infile, String outfile, java.util.List<StateMod_StreamEstimate> theRivs, java.util.List<String> newcomments, boolean do_daily) throws Exception
        public static void writeStateModFile(string infile, string outfile, IList <StateMod_StreamEstimate> theRivs, IList <string> newcomments, bool do_daily)
        {
            PrintWriter    @out = null;
            IList <string> commentIndicators = new List <string>(1);

            commentIndicators.Add("#");
            IList <string> ignoredCommentIndicators = new List <string>(1);

            ignoredCommentIndicators.Add("#>");
            string routine = "StateMod_StreamEstimate.writeStateModFile";

            if (Message.isDebugOn)
            {
                Message.printDebug(2, routine, "Writing stream estimate stations to file \"" + outfile + "\" using \"" + infile + "\" header...");
            }

            try
            {
                // Process the header from the old file...
                @out = IOUtil.processFileHeaders(IOUtil.getPathUsingWorkingDir(infile), IOUtil.getPathUsingWorkingDir(outfile), newcomments, commentIndicators, ignoredCommentIndicators, 0);

                string cmnt   = "#>";
                string iline  = null;
                string format = null;
                StateMod_StreamEstimate riv = null;

                @out.println(cmnt + " *******************************************************");
                @out.println(cmnt + "  Stream Estimate Station File");
                @out.println(cmnt);
                @out.println(cmnt + "  This file contains a list of stations at which stream");
                @out.println(cmnt + "  natural flows are estimated.");
                @out.println(cmnt + "  The IDs for nodes will match the IDs in one of the following files:");
                @out.println(cmnt + "      Diversion stations");
                @out.println(cmnt + "      Reservoir stations");
                @out.println(cmnt + "      Instream flow stations");
                @out.println(cmnt + "      Well stations");
                @out.println(cmnt + "  Stream gages with historical data are in the stream gage station file.");
                @out.println(cmnt + "  \"Other\" nodes with baseflow data are only listed in the river network file.");
                @out.println(cmnt);
                @out.println(cmnt + "     format:  (a12, a24, a12, 1x, a12)");
                @out.println(cmnt);
                @out.println(cmnt + "  ID         crunid:  Station ID");
                @out.println(cmnt + "  Name       runnam:  Station name");
                @out.println(cmnt + "  River ID    cgoto:  River node with stream estimate station");
                @out.println(cmnt + "  Daily ID  crunidy:  Daily stream station ID.");
                @out.println(cmnt);
                @out.println(cmnt + "    ID              Name           River ID     Daily ID   ");
                @out.println(cmnt + "---------eb----------------------eb----------exb----------e");
                if (do_daily)
                {
                    format = "%-12.12s%-24.24s%-12.12s %-12.12s";
                }
                else
                {
                    format = "%-12.12s%-24.24s%-12.12s";
                }
                @out.println(cmnt);
                @out.println(cmnt + "EndHeader");
                @out.println(cmnt);

                int num = 0;
                if (theRivs != null)
                {
                    num = theRivs.Count;
                }
                IList <object> v = new List <object> (5);
                for (int i = 0; i < num; i++)
                {
                    riv = theRivs[i];
                    v.Clear();
                    v.Add(riv.getID());
                    v.Add(riv.getName());
                    v.Add(riv.getCgoto());
                    if (do_daily)
                    {
                        v.Add(riv.getCrunidy());
                    }
                    iline = StringUtil.formatString(v, format);
                    @out.println(iline);
                }
            }
            catch (Exception e)
            {
                Message.printWarning(2, routine, e);
                throw e;
            }
            finally
            {
                if (@out != null)
                {
                    @out.flush();
                    @out.close();
                }
            }
        }