com.appland.appmap.reflect.apache.NameValuePair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appmap-agent Show documentation
Show all versions of appmap-agent Show documentation
Inspect and record the execution of Java for use with App Land
The newest version!
package com.appland.appmap.reflect.apache;
import com.appland.appmap.reflect.ReflectiveType;
public class NameValuePair extends ReflectiveType {
private static String GET_NAME = "getName";
private static String GET_VALUE = "getValue";
public NameValuePair(Object self) {
super(self);
addMethods(GET_NAME, GET_VALUE);
}
public String getName() {
return invokeStringMethod(GET_NAME);
}
public String getValue() {
return invokeStringMethod(GET_VALUE);
}
}