View Javadoc

1   /**
2    * 
3    */
4   package org.ximtec.igesture.tool.gesturevisualisation;
5   
6   import java.awt.Color;
7   import java.awt.Dimension;
8   import java.awt.FlowLayout;
9   
10  import javax.swing.BorderFactory;
11  import javax.swing.BoxLayout;
12  import javax.swing.JPanel;
13  
14  import org.ximtec.igesture.io.GestureDevicePanel;
15  
16  /**
17   * @author Björn Puype, bpuype@gmail.com
18   *
19   */
20  public class InputComponentPanel extends JPanel {
21  
22  	private GestureDevicePanel devicePanel;
23  	
24  	public GestureDevicePanel getGestureDevicePanel()
25  	{
26  		return devicePanel;
27  	}
28  	
29  	public void setGestureDevicePanel(GestureDevicePanel panel)
30  	{
31  		devicePanel = panel;
32  	}
33  	
34  }