org.atemsource.atem.utility.common.EntityOperationReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atem-utility Show documentation
Show all versions of atem-utility Show documentation
Atem utilities for cloning, comparing and transforming
The newest version!
package org.atemsource.atem.utility.common;
public class EntityOperationReference {
private O operation;
public O getOperation() {
return operation;
}
public void setOperation(O operation) {
this.operation = operation;
}
}