Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 package com.generalrobotix.ui.item;
00020
00021 import com.generalrobotix.ui.GrxBaseItem;
00022 import com.generalrobotix.ui.GrxPluginManager;
00023
00024 @SuppressWarnings("serial")
00025 public class GrxGraphItem extends GrxBaseItem {
00026 public static final String TITLE = "Graph Contents";
00027
00028 public GrxGraphItem(String name, GrxPluginManager manager) {
00029 super(name, manager);
00030 setExclusive(true);
00031 setIcon("graph.png");
00032 }
00033
00034 public boolean create() {
00035 setDblAry("timeRange", new double[]{1.0, 0.8});
00036 return true;
00037 }
00038
00039 public void restoreProperties() {
00040 super.restoreProperties();
00041 if(getDblAry("timeRange", null)==null)
00042 setDblAry("timeRange", new double[]{1.0, 0.8});
00043 }
00044 }