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

io.baltoro.ep.EPData Maven / Gradle / Ivy

There is a newer version: 4.0.12
Show newest version
package io.baltoro.ep;

import java.util.ArrayList;
import java.util.List;

public class EPData
{

	List list = new ArrayList();
	
	public void add(String name, Object value)
	{
		Object[] objs = new Object[2];
		objs[0] = name;
		objs[1] = value;
		
		list.add(objs);
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy