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

org.kt3k.straw.StrawPluginActionRepository Maven / Gradle / Ivy

The newest version!
package org.kt3k.straw;

import java.util.HashMap;

public class StrawPluginActionRepository {

	private HashMap actionMap = new HashMap();

	public void put(String actionName, StrawPluginAction action) {
		this.actionMap.put(actionName, action);
	}


	public StrawPluginAction get(String actionName) {
		return this.actionMap.get(actionName);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy