1 package net.sf.josceleton.josceleton;
2
3 import net.sf.josceleton.connection.api.Connection;
4
5 /**
6 * @since 0.2
7 */
8 public interface JosceletonFacade {
9
10 /**
11 * @since 0.2
12 */
13 Connection openConnection();
14
15 /**
16 * @since 0.2
17 */
18 Connection openConnectionOnPort(int port);
19
20 // HitWallGesture gesture = facade.create(HitWallGesture.class).propertyX(xValue).build();
21
22 }