package diagapplet.plotter; import java.util.Vector; import java.awt.Color; /* * * PlotData * */ public class PlotData { Vector v = null; Color line_color = null; Color point_color = null; public String name = ""; String line_style = null; int line_width; int coordinate_type; public boolean mark_points = true; boolean show[] = null; public PlotData() { v = new Vector(); show = new boolean[16]; for(int i = 0; i < show.length; i++) { show[i] = true; } } }