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;
00020
00021 import java.util.List;
00022
00027 public interface GrxBaseController {
00031 public void start();
00032
00036 public void stop();
00037
00042 public void itemSelectionChanged(List<GrxBaseItem> itemList);
00043
00049 public boolean setup(List<GrxBaseItem> itemList);
00050
00055 public void control(List<GrxBaseItem> itemList);
00056
00062 public boolean cleanup(List<GrxBaseItem> itemList);
00063 }