com.github.wshackle.fanuc.robotserver.events.ISysPositionEvents Maven / Gradle / Ivy
The newest version!
package com.github.wshackle.fanuc.robotserver.events;
import com4j.*;
@IID("{3AC7EA79-381C-11D1-B6FE-00C04FB9E76B}")
public abstract class ISysPositionEvents {
// Methods:
/**
*
* Occurs when the position is changed, GroupNum specifies which group was changed.
*
* @param groupNum Mandatory short parameter.
*/
@DISPID(1)
public void change(
short groupNum) {
throw new UnsupportedOperationException();
}
/**
*
* Occurs when a position?s comment is changed, GroupNum specifies which group was changed.
*
* @param groupNum Mandatory short parameter.
*/
@DISPID(2)
public void commentChange(
short groupNum) {
throw new UnsupportedOperationException();
}
// Properties:
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy