com.github.wshackle.fanuc.robotserver.events.IIOSignalEvents Maven / Gradle / Ivy
The newest version!
package com.github.wshackle.fanuc.robotserver.events;
import com4j.*;
@IID("{0DBE3EF1-F870-11D0-A093-00A02436CF7E}")
public abstract class IIOSignalEvents {
// Methods:
/**
*
* Occurs before the I/O signal is deleted.
*
*/
@DISPID(1)
public void delete() {
throw new UnsupportedOperationException();
}
/**
*
* Occurs after the I/O signal has changed.
*
*/
@DISPID(2)
public void change() {
throw new UnsupportedOperationException();
}
/**
*
* Occurs after the I/O signal is simulated.
*
*/
@DISPID(3)
public void simulate() {
throw new UnsupportedOperationException();
}
/**
*
* Occurs after the I/O signal is unsimulated.
*
*/
@DISPID(4)
public void unsimulate() {
throw new UnsupportedOperationException();
}
// Properties:
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy