All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.metacsp.multi.activity.Activity Maven / Gradle / Ivy

There is a newer version: 1.3.5
Show newest version
package org.metacsp.multi.activity;

import org.metacsp.framework.Variable;
import org.metacsp.multi.allenInterval.AllenInterval;

public interface Activity {

	/**
	 * @return The {@link AllenInterval} representing the temporal value of this {@link SymbolicVariableActivity}.
	 */
	public AllenInterval getTemporalVariable();
	
	/**
	 * @return A description of this {@link Activity}'s symbolic variable.
	 */
	public String[] getSymbols();

	
	public Variable getVariable();


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy