GrxUIonEclipse-project-0.9.8
src
com
generalrobotix
ui
view
graph
DataKind.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
DataKind
{
19
20
public
final
String
name
;
// データ種別名
21
public
final
String
unitLabel
;
// 単位ラベル
22
public
final
double
base
;
// 基準値
23
public
final
double
extent
;
// 幅
24
public
final
double
factor
;
// プロット係数
25
26
// -----------------------------------------------------------------
27
// コンストラクタ
37
public
DataKind
(
38
String name,
39
String unitLabel,
40
double
base,
41
double
extent,
42
double
factor
43
) {
44
this.name =
name
;
45
this.unitLabel =
unitLabel
;
46
this.base =
base
;
47
this.extent =
extent
;
48
this.factor =
factor
;
49
}
50
}
com.generalrobotix.ui.view.graph.DataKind.unitLabel
final String unitLabel
Definition:
DataKind.java:21
com.generalrobotix.ui.view.graph.DataKind
Definition:
DataKind.java:18
com.generalrobotix.ui.view.graph.DataKind.name
final String name
Definition:
DataKind.java:20
com.generalrobotix.ui.view.graph.DataKind.factor
final double factor
Definition:
DataKind.java:24
com.generalrobotix.ui.view.graph.DataKind.extent
final double extent
Definition:
DataKind.java:23
com.generalrobotix.ui.view.graph.DataKind.base
final double base
Definition:
DataKind.java:22
com.generalrobotix.ui.view.graph.DataKind.DataKind
DataKind(String name, String unitLabel, double base, double extent, double factor)
Definition:
DataKind.java:37
openhrp3
Author(s): AIST, General Robotix Inc., Nakamura Lab of Dept. of Mechano Informatics at University of Tokyo
autogenerated on Thu Sep 8 2022 02:24:02