コード例 #1
0
ファイル: TableStreamer.java プロジェクト: jbudynk/starjava
 /**
  * Constructor.
  *
  * @param sink table destination
  * @param itable index of table to be streamed - 0 means the first TABLE element encountered, 1
  *     means the second etc
  * @param strict whether to enforce strict reading of the VOTable standard
  */
 public TableStreamer(TableSink sink, int itable, boolean strict) {
   super(strict);
   setTableHandler(null);
   setReadHrefTables(false);
   sink_ = sink;
   skipTables_ = itable;
   namespacing_ = Namespacing.getInstance();
 }