DataItemInfo.java
Go to the documentation of this file.
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 
00012 import org.eclipse.swt.graphics.RGB;
00013 
00014 
00021 public class DataItemInfo {
00022 
00023     public final DataItem dataItem; // データアイテム
00024     public RGB    color;      // 色
00025     public String   legend;     // 凡例文字列
00026     public DataSeries dataSeries;
00027 
00028     // -----------------------------------------------------------------
00029     // コンストラクタ
00037     public DataItemInfo(
00038         DataItem dataItem,
00039         RGB    color,
00040         String   legend
00041     ) {
00042         this.dataItem = dataItem;
00043         this.color = color;
00044         this.legend = legend;
00045         dataSeries = null;
00046     }
00047 }


openhrp3
Author(s): AIST, General Robotix Inc., Nakamura Lab of Dept. of Mechano Informatics at University of Tokyo
autogenerated on Thu Apr 11 2019 03:30:16