com.github.wshackle.fanuc.robotserver.events.IVarEvents Maven / Gradle / Ivy
The newest version!
package com.github.wshackle.fanuc.robotserver.events;
import com4j.*;
@IID("{C19FE67C-A462-11D0-B304-00A02479C928}")
public abstract class IVarEvents {
// Methods:
/**
*
* Occurs after a variable is deleted.
*
*/
@DISPID(2)
public void delete() {
throw new UnsupportedOperationException();
}
/**
*
* Occurs after a variable is changed.
*
*/
@DISPID(3)
public void change() {
throw new UnsupportedOperationException();
}
/**
*
* Occurs after a variable is renamed.
*
*/
@DISPID(4)
public void rename() {
throw new UnsupportedOperationException();
}
/**
*
* Occurs after a numeric register comment is changed.
*
*/
@DISPID(6)
public void commentChange() {
throw new UnsupportedOperationException();
}
// Properties:
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy