コード例 #1
0
ファイル: ScatterPlot.java プロジェクト: ninkin/scatterplot
 public ScatterPlot(Vector<Vector<Object>> data) {
   model = new ScatterPlotModel();
   model.readTXTData("RPKM.txt");
   view = new ScatterPlotView(model);
   controller = new ScatterPlotController(view, model);
 }
コード例 #2
0
ファイル: ScatterPlot.java プロジェクト: ninkin/scatterplot
 public ScatterPlot(String input) {
   model = new ScatterPlotModel();
   model.readTXTData(input);
   view = new ScatterPlotView(model);
   controller = new ScatterPlotController(view, model);
 }