1 package mypackage; 2 3 /** A simple library for the http_jar test. */ 4 public class MyLib { myStr()5 public static String myStr() { 6 return "my_string"; 7 } 8 } 9 10