
org.integratedmodelling.engine.actionsupport.ActionTime Maven / Gradle / Ivy
package org.integratedmodelling.engine.actionsupport;
import org.integratedmodelling.api.time.ITemporalExtent;
/**
* Wrapper for the spatial extent to use within actions.
*
* @author ferdinando.villa
* @deprecated use Groovy
*/
@Deprecated
public class ActionTime {
ITemporalExtent time;
public ActionTime(ITemporalExtent time) {
this.time = time;
}
public double getLinearResolution() {
return 0;
}
public double getArea() {
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy