00001 package com.generalrobotix.ui.view.graph; 00002 00003 import org.eclipse.swt.graphics.Color; 00004 00009 public class LegendInfo { 00010 00011 // ----------------------------------------------------------------- 00012 // インスタンス変数 00013 public Color color; // 色 00014 public String label; // ラベル 00015 00016 // ----------------------------------------------------------------- 00017 // コンストラクタ 00024 public LegendInfo( 00025 Color color, 00026 String label 00027 ) { 00028 this.color = color; 00029 this.label = label; 00030 } 00031 }