00001 /* 00002 * Copyright (c) 2008, AIST, the University of Tokyo and General Robotix Inc. 00003 * All rights reserved. This program is made available under the terms of the 00004 * Eclipse Public License v1.0 which accompanies this distribution, and is 00005 * available at http://www.eclipse.org/legal/epl-v10.html 00006 * Contributors: 00007 * General Robotix Inc. 00008 * National Institute of Advanced Industrial Science and Technology (AIST) 00009 */ 00010 package com.generalrobotix.ui.view.graph; 00011 00018 public class DataModel { 00019 00020 public final DataItem dataItem; // データアイテム 00021 public final DataSeries dataSeries; // データ系列 00022 00023 // ----------------------------------------------------------------- 00024 // コンストラクタ 00031 public DataModel( 00032 DataItem dataItem, 00033 DataSeries dataSeries 00034 ) { 00035 this.dataItem = dataItem; 00036 this.dataSeries = dataSeries; 00037 } 00038 }