com.github.wshackle.fanuc.robotserver.events.IProgramEvents Maven / Gradle / Ivy
The newest version!
package com.github.wshackle.fanuc.robotserver.events;
import com4j.*;
@IID("{18254511-DC4C-11D0-A083-00A02436CF7E}")
public abstract class IProgramEvents {
// Methods:
/**
*
* Occurs after a program is deleted.
*
*/
@DISPID(1)
public void delete() {
throw new UnsupportedOperationException();
}
/**
*
* Occurs after an attribute is changed.
*
* @param attr Mandatory com.github.wshackle.fanuc.robotserver.FREAttributeConstants parameter.
*/
@DISPID(2)
public void attrChange(
com.github.wshackle.fanuc.robotserver.FREAttributeConstants attr) {
throw new UnsupportedOperationException();
}
/**
*
* Occurs after a TP program is reloaded.
*
*/
@DISPID(3)
public void refresh() {
throw new UnsupportedOperationException();
}
/**
*
* Occurs after a program?s variables are reloaded.
*
*/
@DISPID(4)
public void refreshVars() {
throw new UnsupportedOperationException();
}
// Properties:
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy