public FxRobotImpl() {
boundsLocator = new BoundsLocatorImpl();
pointLocator = new PointLocatorImpl(boundsLocator);
baseRobot = new BaseRobotImpl();
keyboardRobot = new KeyboardRobotImpl(baseRobot);
mouseRobot = new MouseRobotImpl(baseRobot);
sleepRobot = new SleepRobotImpl();
typeRobot = new TypeRobotImpl(keyboardRobot, sleepRobot);
writeRobot = new WriteRobotImpl(typeRobot, sleepRobot);