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

com.firefly.template.Model Maven / Gradle / Ivy

There is a newer version: 4.0.20
Show newest version
package com.firefly.template;

public interface Model {
	void put(String key, Object object);
	
	Object get(String key);
	
	void remove(String key);
	
	void clear();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy