Package jaron.components

Examples of jaron.components.Signal


   * is locked and therefore can't be moved by the user.
   *
   * @param state   either <code>true</code> or <code>false</code>
   */
  public void setLockedX(Boolean state) {
    Signal powerX = axisX.getPowerSignal();
    if (state) powerX.setValue(powerX.getLow());
    else powerX.setValue(powerX.getHigh());
  }
View Full Code Here


   * is locked and therefore can't be moved by the user.
   *
   * @param state   either <code>true</code> or <code>false</code>
   */
  public void setLockedY(Boolean state) {
    Signal powerY = axisY.getPowerSignal();
    if (state) powerY.setValue(powerY.getLow());
    else powerY.setValue(powerY.getHigh());
  }
View Full Code Here

TOP

Related Classes of jaron.components.Signal

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.