xapi.collect.api.StringTo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xapi-gwt Show documentation
Show all versions of xapi-gwt Show documentation
This module exists solely to package all other gwt modules into a single
uber jar. This makes deploying to non-mavenized targets much easier.
Of course, you would be wise to inherit your dependencies individually;
the uber jar is intended for projects like collide,
which have complex configuration, and adding many jars would be a pain.
The newest version!
package xapi.collect.api;
import java.io.Serializable;
/**
* StringTo is a special mapping interface,
* since it has the best possible native support in dictionary-oriented
* languages, like javascript, we do not extend ObjectTo, which
* forces generic override problems in the GWT compiler,
* rather, we tie in to the HasValues interface instead.
*
* @author "James X. Nelson ([email protected])"
*
* @param
*/
public interface StringTo
extends HasValues, Serializable
{
V get(String key);
V put(String key, V value);
V remove(String key);
String[] keyArray();
int size();
public static interface Many
extends StringTo>
{
Many add(String key, V value);
}
}