new BufferedReader(new InputStreamReader(is));
String line;
while ((line = reader.readLine()) != null) {
DataSet ds;
ds = DataSet.parseDataSet (line);
if (ds != null)
{
String type = ds.getType ();
List<DataSource> dsrc = ds.getDataSources ();
this._types.put (type, dsrc);
}
}
} /* void load */