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 DataKind { 00019 00020 public final String name; // データ種別名 00021 public final String unitLabel; // 単位ラベル 00022 public final double base; // 基準値 00023 public final double extent; // 幅 00024 public final double factor; // プロット係数 00025 00026 // ----------------------------------------------------------------- 00027 // コンストラクタ 00037 public DataKind( 00038 String name, 00039 String unitLabel, 00040 double base, 00041 double extent, 00042 double factor 00043 ) { 00044 this.name = name; 00045 this.unitLabel = unitLabel; 00046 this.base = base; 00047 this.extent = extent; 00048 this.factor = factor; 00049 } 00050 }