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

datareader.Selection Maven / Gradle / Ivy

Go to download

A OyoTestLibs jar for deployment to the Central Repository via OSSRH

The newest version!
package com.oyo.datareader;

import java.util.HashMap;
import java.util.Map;

public class Selection {

	Map map1 = new HashMap();
	Map map2 = new HashMap();

	public Selection(Map map1, Map map2) {
		this.map1 = map1;
		this.map2 = map2;
	}

	public Map returnMap1() {
		return map1;
	}

	public Map returnMap2() {
		return map2;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy