xapi.ui.autoui.api.NameValuePair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xapi-core-ui-autoui Show documentation
Show all versions of xapi-core-ui-autoui Show documentation
The core API for generating user interfaces from data models.
The newest version!
package xapi.ui.autoui.api;
public class NameValuePair implements HasNamedValue {
private String name;
private T value;
public NameValuePair(String name, T value) {
this.name = name;
this.value = value;
}
@Override
public String getName() {
return name;
}
@Override
public T getValue() {
return value;
}
}