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

jadex.nfproperty.sensor.memory.MemoryProperty Maven / Gradle / Ivy

package jadex.nfproperty.sensor.memory;

import jadex.core.IComponent;
import jadex.nfproperty.impl.NFPropertyMetaInfo;
import jadex.nfproperty.impl.NFRootProperty;
import jadex.nfproperty.sensor.unit.MemoryUnit;

/**
 *  Abstract base memory property.
 */
public abstract class MemoryProperty extends NFRootProperty
{
	/**
	 *  Create a new property.
	 */
	public MemoryProperty(String name, final IComponent comp, long updaterate)
	{
		super(comp, new NFPropertyMetaInfo(name, long.class, MemoryUnit.class, 
			updaterate>0? true: false, updaterate, true, Target.Root));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy