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

io.oz.album.peer.Exifield Maven / Gradle / Ivy

There is a newer version: 0.5.7
Show newest version
package io.oz.album.peer;

import java.util.HashMap;

import io.odysz.transact.sql.parts.AnDbField;

public class Exifield extends AnDbField {
	HashMap exif;

	public Exifield add(String name, String v) {
		if (exif == null)
			exif = new HashMap();
		exif.put(name, v);
		return this;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy