![JAR search and dependency download from the Maven repository](/logo.png)
jadex.android.controlcenter.componentViewer.properties.PropertyItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-runtimetools-android Show documentation
Show all versions of jadex-runtimetools-android Show documentation
The Jadex rules tools package contains
tools for the Jadex active components
infrastructure.
The newest version!
package jadex.android.controlcenter.componentViewer.properties;
import java.io.Serializable;
public class PropertyItem implements Serializable
{
public String name;
public Object value;
public PropertyItem(String name, Object value)
{
this.name = name;
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy