io.oz.album.peer.Exifield Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of syndoc-lib Show documentation
Show all versions of syndoc-lib Show documentation
Album common lib for Android client and jserv
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