main.io.github.moonlightsuite.moonlight.online.monitoring.UpdateParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moonlight-engine Show documentation
Show all versions of moonlight-engine Show documentation
MoonLight is a light-weight Java-tool for monitoring temporal, spatial and spatio-temporal properties of distributed complex systems, such as Cyber-Physical Systems and Collective Adaptive Systems.
The newest version!
package io.github.moonlightsuite.moonlight.online.monitoring;
import io.github.moonlightsuite.moonlight.formula.Parameters;
import io.github.moonlightsuite.moonlight.online.signal.Update;
public class UpdateParameter, V>
extends Parameters
{
private final Update update;
public UpdateParameter(Update update) {
this.update = update;
}
public Update getUpdate() {
return update;
}
}