All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.wshackle.fanuc.robotserver.IDigitalIOSignal Maven / Gradle / Ivy

The newest version!
package com.github.wshackle.fanuc.robotserver  ;

import com4j.*;

/**
 * Represents a digital I/O signal object.  
 */
@IID("{59DC16FC-AF91-11D0-A072-00A02436CF7E}")
public interface IDigitalIOSignal extends com.github.wshackle.fanuc.robotserver.IIOSignal {
  // Methods:
  /**
   * 

* Returns/sets the value of a signal. *

*

* Getter method for the COM property "Value" *

* @return Returns a value of type boolean */ @DISPID(201) //= 0xc9. The runtime will prefer the VTID if present @VTID(16) boolean value(); /** *

* Returns/sets the value of a signal. *

*

* Setter method for the COM property "Value" *

* @param value Mandatory boolean parameter. */ @DISPID(201) //= 0xc9. The runtime will prefer the VTID if present @VTID(17) void value( boolean value); /** *

* Returns/sets the simulation status of a signal; True - Simulated, False - unsimulated. *

*

* Getter method for the COM property "Simulate" *

* @return Returns a value of type boolean */ @DISPID(202) //= 0xca. The runtime will prefer the VTID if present @VTID(18) boolean simulate(); /** *

* Returns/sets the simulation status of a signal; True - Simulated, False - unsimulated. *

*

* Setter method for the COM property "Simulate" *

* @param simulate Mandatory boolean parameter. */ @DISPID(202) //= 0xca. The runtime will prefer the VTID if present @VTID(19) void simulate( boolean simulate); /** *

* Returns/sets the polarity of a signal; True ? normal polarity, False ? inverse polarity. *

*

* Getter method for the COM property "Polarity" *

* @return Returns a value of type boolean */ @DISPID(203) //= 0xcb. The runtime will prefer the VTID if present @VTID(20) boolean polarity(); /** *

* Returns/sets the polarity of a signal; True ? normal polarity, False ? inverse polarity. *

*

* Setter method for the COM property "Polarity" *

* @param polarity Mandatory boolean parameter. */ @DISPID(203) //= 0xcb. The runtime will prefer the VTID if present @VTID(21) void polarity( boolean polarity); /** *

* Returns/sets the complementary status of an output signal. *

*

* Getter method for the COM property "Complementary" *

* @return Returns a value of type boolean */ @DISPID(204) //= 0xcc. The runtime will prefer the VTID if present @VTID(22) boolean complementary(); /** *

* Returns/sets the complementary status of an output signal. *

*

* Setter method for the COM property "Complementary" *

* @param complementary Mandatory boolean parameter. */ @DISPID(204) //= 0xcc. The runtime will prefer the VTID if present @VTID(23) void complementary( boolean complementary); /** *

* Returns the owning Signals collection *

*

* Getter method for the COM property "Parent" *

* @return Returns a value of type com.github.wshackle.fanuc.robotserver.IIOSignals */ @DISPID(205) //= 0xcd. The runtime will prefer the VTID if present @VTID(24) com.github.wshackle.fanuc.robotserver.IIOSignals parent(); /** *

* Controls if the data is read directly from the robot or not when an read access is made to the Value property. *

*

* Getter method for the COM property "NoRefresh" *

* @return Returns a value of type boolean */ @DISPID(250) //= 0xfa. The runtime will prefer the VTID if present @VTID(25) boolean noRefresh(); /** *

* Controls if the data is read directly from the robot or not when an read access is made to the Value property. *

*

* Setter method for the COM property "NoRefresh" *

* @param noRefresh Mandatory boolean parameter. */ @DISPID(250) //= 0xfa. The runtime will prefer the VTID if present @VTID(26) void noRefresh( boolean noRefresh); /** *

* Controls if the data is immediately sent to the robot or not when an assignment is made to the Value property. *

*

* Getter method for the COM property "NoUpdate" *

* @return Returns a value of type boolean */ @DISPID(251) //= 0xfb. The runtime will prefer the VTID if present @VTID(27) boolean noUpdate(); /** *

* Controls if the data is immediately sent to the robot or not when an assignment is made to the Value property. *

*

* Setter method for the COM property "NoUpdate" *

* @param noUpdate Mandatory boolean parameter. */ @DISPID(251) //= 0xfb. The runtime will prefer the VTID if present @VTID(28) void noUpdate( boolean noUpdate); /** *

* Reads new information of the signal from the robot. *

*/ @DISPID(252) //= 0xfc. The runtime will prefer the VTID if present @VTID(29) void refresh(); /** *

* Sends the local copy of this signal's information to the robot. *

*/ @DISPID(253) //= 0xfd. The runtime will prefer the VTID if present @VTID(30) void update(); // Properties: }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy