DebuggingTasks.java

00001 package edu.stanford.hci.r3.tools.design.gui.toolbar;
00002 
00003 import java.util.ArrayList;
00004 import java.util.List;
00005 
00006 import edu.stanford.hci.r3.util.components.ribbons.RibbonPanel;
00007 
00018 public class DebuggingTasks {
00019 
00020         private RibbonPanel devicesPanel;
00021 
00025         private RibbonPanel getDevicesPanel() {
00026                 if (devicesPanel == null) {
00027                         devicesPanel = new RibbonPanel("Devices");
00028                 }
00029                 return devicesPanel;
00030         }
00031 
00035         public List<RibbonPanel> getPanels() {
00036                 final List<RibbonPanel> panels = new ArrayList<RibbonPanel>();
00037                 panels.add(getDevicesPanel());
00038                 return panels;
00039         }
00040 
00041 }

Generated on Sat Apr 14 18:21:33 2007 for R3 Paper Toolkit by  doxygen 1.4.7