1 25 package org.jrobin.graph; 26 27 import java.awt.Color ; 28 29 35 class LegendMarker 36 { 37 private int markerPos; 41 private Color color; 42 43 44 51 LegendMarker( int markerPos, Color c ) 52 { 53 this.markerPos = markerPos; 54 this.color = c; 55 } 56 57 58 Color getColor() { 62 return color; 63 } 64 65 int getXPosition() { 66 return markerPos; 67 } 68 } 69 | Popular Tags |