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

com.appland.appmap.reflect.apache.Header Maven / Gradle / Ivy

The newest version!
package com.appland.appmap.reflect.apache;

import com.appland.appmap.reflect.ReflectiveType;

class Header extends ReflectiveType {
  private static String GET_NAME = "getName";
  private static String GET_VALUE = "getValue";

  Header(Object self) {
    super(self);

    addMethods(GET_NAME, GET_VALUE);
  }

  String getName() {
    return invokeStringMethod(GET_NAME);
  }

  String getValue() {
    return invokeStringMethod(GET_VALUE);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy