Package org.sikuli.api.visual.element

Examples of org.sikuli.api.visual.element.CircleElement


    }

  }
 
  public StyleBuilder addCircle(ScreenLocation screenLocation){   
    CircleElement newElement = new CircleElement();   
    newElement.x = screenLocation.getX() - 10;
    newElement.y = screenLocation.getY() - 10;
    newElement.width = 20;
    newElement.height = 20;     
    return addElement(newElement);
View Full Code Here

TOP

Related Classes of org.sikuli.api.visual.element.CircleElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.