DataModel.java
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008, AIST, the University of Tokyo and General Robotix Inc.
3  * All rights reserved. This program is made available under the terms of the
4  * Eclipse Public License v1.0 which accompanies this distribution, and is
5  * available at http://www.eclipse.org/legal/epl-v10.html
6  * Contributors:
7  * General Robotix Inc.
8  * National Institute of Advanced Industrial Science and Technology (AIST)
9  */
10 package com.generalrobotix.ui.view.graph;
11 
18 public class DataModel {
19 
20  public final DataItem dataItem; // データアイテム
21  public final DataSeries dataSeries; // データ系列
22 
23  // -----------------------------------------------------------------
24  // コンストラクタ
31  public DataModel(
32  DataItem dataItem,
33  DataSeries dataSeries
34  ) {
35  this.dataItem = dataItem;
36  this.dataSeries = dataSeries;
37  }
38 }
DataModel(DataItem dataItem, DataSeries dataSeries)
Definition: DataModel.java:31


openhrp3
Author(s): AIST, General Robotix Inc., Nakamura Lab of Dept. of Mechano Informatics at University of Tokyo
autogenerated on Sat May 8 2021 02:42:37