View Javadoc

1   package org.ximtec.igesture.io;
2   
3   import java.util.Set;
4   
5   
6   /**
7    * This interface defines the discovery services.
8    * @author Bjorn Puype, bpuype@gmail.com
9    *
10   */
11  public interface DeviceDiscoveryService {
12  
13  	/**
14  	 * Discover and return the found devices.
15  	 * @return	The found devices.
16  	 */
17  	public Set<AbstractGestureDevice<?,?>> discover();
18  	
19  	/**
20  	 * Clean-up the discovery service.
21  	 */
22  	public void dispose();
23  	
24  }